[^%<]*')\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.711,
"posY": 4.269,
"posZ": -36.331,
"rotX": 1.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.875,
"posY": 4.231,
"posZ": -35.78,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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 = [[\n{\n \"Flashlight (3)\": {\n \"tokenType\": \"resource\",\n \"tokenCount\": 4\n }\n}\n]]\n\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\n\nfunction onload(save_state)\n local playerMatWhite = getObjectFromGUID('8b081b')\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\n local playerMatOrange = getObjectFromGUID('bd0ff4')\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\n local playerMatGreen = getObjectFromGUID('383d8b')\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\n local playerMatRed = getObjectFromGUID('0840d5')\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e59f6",
"Name": "Bag",
"Transform": {
"posX": 29.214,
"posY": 4.036,
"posZ": -36.222,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.106,
"posY": 3.417,
"posZ": -75.431,
"rotX": 358.0,
"rotY": 0.0,
"rotZ": 178.0,
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-08-30 5:05 p.m.\n---\n\ncommand_name = \"include\"\n\n---@type ArkhamImport_Command_RunDirectives\nrunOn = {\n instructions = true,\n handlers = true\n}\n\nlocal back_image_default = \"https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg\"\n\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\n---@return ArkhamImport_Command_DescriptionInstructionResults\nfunction do_instruction(parameters)\n local args = parameters.arguments\n local arg_count = #args\n\n if (arg_count<4 or arg_count>6) then\n return {\n is_successful = false,\n error_message = \"Include Command requires between 4 and 6 arguments. \" .. arg_count .. \" were provided.\"\n }\n end\n\n if not parameters.command_state[\"include-command\"] then\n parameters.command_state[\"include-command\"] = {\n has_run = false,\n includes = {},\n index = 1\n }\n end\n\n local index = parameters.command_state[\"include-command\"].index\n parameters.command_state[\"include-command\"].index = index + 1\n\n parameters.command_state[\"include-command\"].includes[index] = {\n count = args[1],\n name = args[2],\n subtitle = args[3],\n image_uri = args[4],\n zone = args[5] or \"default\",\n back_image_uri = args[6] or back_image_default\n }\n\n return { is_successful = true, command_state = parameters.command_state }\nend\n\n---@param parameters ArkhamImport_Command_HandlerArguments\n---@return ArkhamImport_Command_HandlerResults\nfunction handle_card(parameters)\n local state = parameters.command_state[\"include-command\"]\n\n if state.has_run then return { is_successful = true } end\n\n state.has_run = true\n\n local source = getObjectFromGUID(parameters.source_guid)\n local offset = 0.1\n\n for _, include in pairs(state.includes) do\n local zone_name = include.zone\n local zone = parameters.configuration.zones[zone_name]\n\n if not zone then\n return {\n is_successful = false,\n command_state = parameters.command_state,\n error_message = \"Include Card [\" .. include.name .. \"]: Zone \\\"\" .. tostring(zone_name) .. \"\\\" was not found.\"\n }\n end\n\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\n\n for _=1, include.count do\n local new = spawnObject {\n type = \"CardCustom\",\n position = position + Vector(0, offset, 0),\n rotaiton = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\n ---@param card TTSObject\n callback_function = function (card)\n card:setName(include.name)\n card:setDescription(include.subtitle)\n end\n }\n\n new:setCustomObject {\n type = 0,\n face = include.image_uri,\n back = include.back_image_uri\n }\n offset = offset + 1\n end\n end\n\n return {\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\n command_state = parameters.command_state,\n is_successful = true\n }\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "400e1a",
"Name": "Checker_white",
"Transform": {
"posX": -48.108,
"posY": 3.415,
"posZ": -74.085,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 0.35,
"scaleY": 0.35,
"scaleZ": 0.35
},
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-08-24 6:11 p.m.\n---\n\ncommand_name = \"proxy-card\"\n\n---@type ArkhamImport_Command_RunDirectives\nrunOn = {\n instructions = true,\n handlers = true\n}\n\nlocal back_image_default = \"https://images-ext-2.discordapp.net/external/QY_dmo_UnAHEi1pgWwaRr1-HSB8AtrAv0W74Mh_Z6vg/https/i.imgur.com/EcbhVuh.jpg\"\n\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\n---@return ArkhamImport_Command_DescriptionInstructionResults\nfunction do_instruction(parameters)\n local args = parameters.arguments\n if (#args<4 or #args>6) then\n return {\n is_successful = false,\n error_message = \"Move Command requires between 4 or 6 arguments. \" .. #args .. \" were provided.\"\n }\n end\n\n if not parameters.command_state[\"proxy-card\"] then\n parameters.command_state[\"proxy-card\"] = {}\n parameters.command_state[\"proxy-card-offset\"] = 0.1\n end\n\n parameters.command_state[\"proxy-card\"][args[1]] = {\n name = args[2],\n subtitle = args[3],\n image_uri = args[4],\n zone = args[5] or \"default\",\n back_image_uri = args[6] or back_image_default\n }\n\n return {\n command_state = parameters.command_state,\n is_successful = true\n }\nend\n\n---@param parameters ArkhamImport_Command_HandlerArguments\n---@return ArkhamImport_Command_HandlerResults\nfunction handle_card(parameters)\n local state = parameters.command_state[\"proxy-card\"] or {}\n\n local card_data = state[parameters.card.code]\n\n if not card_data then return { is_successful = true } end\n\n local offset = parameters.command_state[\"proxy-card-offset\"]\n parameters.command_state[\"proxy-card-offset\"] = offset + 0.1\n\n local zone = parameters.configuration.zones[card_data.zone]\n\n if not zone then\n return {\n is_successful = false,\n error_message = \"Proxy Card [\" .. tostring(parameters.card.code) .. \"]: Zone \\\"\" .. tostring(card_data.zone) .. \"\\\" was not found.\"\n }\n end\n\n local source = getObjectFromGUID(parameters.source_guid)\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\n\n for _=1, parameters.card.count do\n local new = spawnObject {\n type = \"CardCustom\",\n position = position + Vector(0, offset, 0),\n rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\n ---@param card TTSObject\n callback_function = function (card)\n card:setName(card_data.name)\n card:setDescription(card_data.subtitle)\n end\n }\n\n new:setCustomObject {\n type = 0,\n face = card_data.image_uri,\n back = card_data.back_image_uri\n }\n end\n\n return { handled = true, is_successful = true }\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b55d8",
"Name": "Checker_white",
"Transform": {
"posX": -48.105,
"posY": 3.415,
"posZ": -73.343,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 0.35,
"scaleY": 0.35,
"scaleZ": 0.35
},
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-08-24 6:02 p.m.\n---\n\ncommand_name = \"move\"\n\n---@type ArkhamImport_Command_RunDirectives\nrunOn = {\n instructions = true,\n handlers = true\n}\n\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\n---@return ArkhamImport_Command_DescriptionInstructionResults\nfunction do_instruction(parameters)\n local args = parameters.arguments\n\n if (#args~=2 and #args~=3) then\n return { is_successful = false, error_message = \"Move Command requires 2 or 3 arguments. \" .. #args .. \" were provided.\" }\n end\n\n local card_id = args[1]\n local new_zone = args[2]\n local count = tonumber(args[3]) or 3\n\n if not parameters.configuration.zones[new_zone] then\n return { is_successful = false, error_message = \"Move Command: Zone \\\"\" .. new_zone .. \"\\\" was not found.\" }\n end\n\n local state = parameters.command_state[\"move\"]\n\n if not state then\n state = {}\n parameters.command_state[\"move\"] = state\n end\n\n local card_data = state[card_id]\n\n if not card_data then\n card_data = {\n zone = {},\n offset = 0\n }\n\n state[card_id] = card_data\n end\n\n local zone = card_data.zone\n local offset = card_data.offset\n\n for index=offset,offset+count do\n zone[index] = new_zone\n end\n\n return { command_state = parameters.command_state, is_successful = true }\nend\n\n---@param parameters ArkhamImport_Command_HandlerArguments\n---@return ArkhamImport_Command_HandlerResults\nfunction handle_card(parameters)\n local state = parameters.command_state[\"move\"] or {}\n\n local card_data = state[parameters.card.code]\n\n if not card_data then return { is_successful = true} end\n\n return { zone = card_data.zone, is_successful = true }\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec5b5f",
"Name": "Checker_white",
"Transform": {
"posX": -48.105,
"posY": 3.416,
"posZ": -72.64,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 0.35,
"scaleY": 0.35,
"scaleZ": 0.35
},
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-08-24 5:48 p.m.\n---\n\ncommand_name = \"zone\"\n\nrunOn = {\n instructions = true,\n handlers = false\n}\n\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\n---@return ArkhamImport_Command_DescriptionInstructionResults\nfunction do_instruction(parameters)\n local args = parameters.arguments\n if (#args<4 or #args>6) then\n return {\n is_successful = false,\n error_message = \"Zone Command requires between 4 and 6 arguments. \" .. #args .. \" were provided.\"\n }\n end\n\n local name = args[1]\n local position = Vector(tonumber(args[2]), tonumber(args[3]), tonumber(args[4]))\n local is_facedown= (args[5] and args[5]:lower()==\"true\") or false\n local is_absolute = (args[6] and args[6]:lower() == \"true\") or false\n\n ---@type ArkhamImportZone\n local zone = {\n position = position,\n is_facedown = is_facedown,\n is_absolute = is_absolute\n }\n\n parameters.configuration.zones[name] = zone\n\n return {\n configuration = parameters.configuration,\n is_successful = true\n }\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "80eac7",
"Name": "Checker_white",
"Transform": {
"posX": -48.104,
"posY": 3.415,
"posZ": -74.743,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 0.35,
"scaleY": 0.35,
"scaleZ": 0.35
},
"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": "---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-08-25 2:32 p.m.\n---\n\ncommand_name = \"proxy-investigator\"\n\n---@type ArkhamImport_Command_RunDirectives\nrunOn = {\n instructions = true,\n handlers = true\n}\n\n---@param parameters ArkhamImport_Command_DescriptionInstructionArguments\n---@return ArkhamImport_Command_DescriptionInstructionResults\nfunction do_instruction(parameters)\n local args = parameters.arguments\n\n if (#args~=6 and #args~=7) then\n return {\n is_successful = false,\n error_message = \"Proxy Investigator command requires either 7 or 8 arguments. \" .. #args .. \" were provided.\"\n }\n end\n\n parameters.command_state[\"proxy-investigator\"] = {\n name = args[1],\n subtitle = args[2],\n front_uri = args[3],\n back_uri = args[4],\n mini_front_uri = args[5],\n mini_back_uri = args[6],\n zone = args[7] or \"investigator\"\n }\n\n return {\n command_state = parameters.command_state,\n is_successful = true\n }\nend\n\n---@param source TTSObject\n---@param name string\n---@param subtitle string\n---@param offset number\n---@param zone ArkhamImportZone\n---@param front string\n---@param back string\n---@param use_minicard_scaling boolean\nlocal function create_card(source, name, subtitle, offset, zone, front, back, use_minicard_scaling)\n local position = zone.is_absolute and zone.position or source:positionToWorld(zone.position)\n\n local card = spawnObject {\n type = \"CardCustom\",\n position = position + Vector(0, offset, 0),\n rotation = source:getRotation() + Vector(0, 0, zone.is_facedown and 180 or 0),\n scale = use_minicard_scaling and Vector(0.6, 1, 0.6) or Vector(1,1,1),\n callback_function = function (card) card:setName(name) card:setDescription(subtitle) end\n }\n\n card:setCustomObject {\n type = 0,\n face = front,\n back = back\n }\nend\n\n---@param parameters ArkhamImport_Command_HandlerArguments\n---@return ArkhamImport_Command_HandlerResults\nfunction handle_card(parameters)\n if parameters.card.type_code ~= \"investigator\" then return {is_successful = true } end\n\n local card_data = parameters.command_state[\"proxy-investigator\"] or {}\n\n if not card_data then return { is_successful = true } end\n\n local zone = parameters.configuration.zones[card_data.zone]\n\n if not zone then\n return {\n is_successful = false,\n command_state = parameters.command_state,\n error_message = \"Proxy Investigator [\" .. tostring(parameters.card.code) .. \"]: Zone \\\"\" .. tostring(card_data.zone) .. \"\\\" was not found.\"\n }\n end\n\n local source = getObjectFromGUID(parameters.source_guid)\n\n for _=1, parameters.card.count do\n create_card(source, card_data.name, card_data.subtitle, 10, zone, card_data.front_uri, card_data.back_uri, false)\n create_card(source, card_data.name, card_data.subtitle, 20, zone, card_data.mini_front_uri, card_data.mini_back_uri, true)\n end\n\n return { handled = true, is_successful = true}\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb2ce4",
"Name": "Bag",
"Transform": {
"posX": -45.498,
"posY": 3.226,
"posZ": -77.733,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.345,
"posY": 2.432,
"posZ": -73.439,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.17,
"scaleY": 1.0,
"scaleZ": 1.17
},
"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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor\n objPos.z = objPos.z * globalScaleFactor\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=500, width=500,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\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.803,
"posY": 1.652,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor\n objPos.z = objPos.z * globalScaleFactor\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=500, width=500,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={-1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={1,0.1,-2.1}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={1,0.1,-3.7}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-1,0.1,-2.9}, rotation={0,0,0}, height=350, width=900,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-1,0.1,2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=350, width=800,\n font_size=250, color={0,0,0}, font_color={1,1,1}\n })\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.305,
"posY": 1.277,
"posZ": 70.741,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.048,
"posY": 1.512,
"posZ": 70.388,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 11.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.26,
"posY": 1.365,
"posZ": 70.171,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.285,
"posY": 1.376,
"posZ": 70.532,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.961,
"posY": 1.386,
"posZ": 70.419,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.67,
"posY": 1.52,
"posZ": 80.59,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.67,
"posY": 1.32,
"posZ": 80.59,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.66,
"posY": 1.474,
"posZ": 84.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 355.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.639,
"posY": 1.377,
"posZ": 83.347,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.967,
"posY": 1.375,
"posZ": 83.176,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.618,
"posY": 1.374,
"posZ": 83.386,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.019,
"posY": 1.373,
"posZ": 83.524,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.649,
"posY": 1.371,
"posZ": 83.453,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
},
"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
},
"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.351,
"posY": 3.144,
"posZ": 62.635,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.752,
"posY": 3.144,
"posZ": 63.644,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.278,
"posY": 3.144,
"posZ": 61.545,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.706,
"posY": 3.221,
"posZ": 63.489,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.047,
"posY": 3.256,
"posZ": 67.255,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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": "39452d",
"Name": "Card",
"Transform": {
"posX": -24.453,
"posY": 1.39,
"posZ": 83.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.398,
"posZ": 83.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.345,
"posZ": 90.581,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.977,
"posY": 1.321,
"posZ": 90.693,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.872,
"posY": 1.28,
"posZ": 90.616,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4bcf5a",
"Name": "Card",
"Transform": {
"posX": -20.939,
"posY": 1.357,
"posZ": 78.707,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.375,
"posZ": 76.537,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.02,
"posY": 1.373,
"posZ": 76.522,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.007,
"posY": 1.372,
"posZ": 76.505,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.647,
"posY": 1.333,
"posZ": 53.156,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.334,
"posZ": 56.478,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.282,
"posZ": 53.119,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.404,
"posZ": 55.707,
"rotX": 358.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.283,
"posZ": 56.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.911,
"posY": 1.294,
"posZ": 77.746,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.096,
"posY": 1.306,
"posZ": 77.997,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.865,
"posY": 1.293,
"posZ": 80.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.571,
"posY": 1.293,
"posZ": 84.244,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.573,
"posY": 1.368,
"posZ": 67.003,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.79,
"posY": 1.508,
"posZ": 66.889,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.384,
"posY": 1.365,
"posZ": 75.925,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.234,
"posY": 1.366,
"posZ": 78.496,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.326,
"posY": 1.365,
"posZ": 73.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.276,
"posY": 1.364,
"posZ": 69.709,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.936,
"posY": 1.363,
"posZ": 67.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.118,
"posY": 1.481,
"posZ": 64.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 358.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.362,
"posZ": 62.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.361,
"posZ": 60.44,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.721,
"posY": 1.36,
"posZ": 57.834,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.002,
"posY": 1.36,
"posZ": 55.479,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.462,
"posY": 1.373,
"posZ": 73.762,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.614,
"posY": 1.531,
"posZ": 73.921,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.298,
"posY": 1.535,
"posZ": 73.754,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.814,
"posY": 1.28,
"posZ": 66.211,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.535,
"posY": 1.28,
"posZ": 61.974,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.809,
"posY": 1.314,
"posZ": 61.981,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.939,
"posY": 1.359,
"posZ": 69.507,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.349,
"posZ": 69.507,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.301,
"posY": 1.371,
"posZ": 66.612,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.247,
"posY": 1.372,
"posZ": 69.506,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.449,
"posY": 1.531,
"posZ": 58.771,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.452,
"posY": 1.517,
"posZ": 58.632,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -3.362,
"posY": 1.274,
"posZ": 58.897,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.186,
"posY": 1.321,
"posZ": 58.864,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.306,
"posY": 1.351,
"posZ": 58.824,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.252,
"posY": 1.359,
"posZ": 58.918,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.118,
"posY": 1.367,
"posZ": 58.648,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.911,
"posY": 1.294,
"posZ": 77.746,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.096,
"posY": 1.306,
"posZ": 77.997,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.865,
"posY": 1.293,
"posZ": 80.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.571,
"posY": 1.293,
"posZ": 84.244,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.814,
"posY": 1.28,
"posZ": 66.211,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.535,
"posY": 1.28,
"posZ": 61.974,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.809,
"posY": 1.314,
"posZ": 61.981,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.618,
"posY": 1.374,
"posZ": 83.386,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.614,
"posY": 1.531,
"posZ": 73.921,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.333,
"posZ": 53.156,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.649,
"posY": 1.371,
"posZ": 83.453,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.234,
"posY": 1.366,
"posZ": 78.496,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.633,
"posY": 2.37,
"posZ": 46.43,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.79,
"posY": 1.508,
"posZ": 66.889,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.026,
"posY": 3.143,
"posZ": 62.687,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.225,
"posY": 3.135,
"posZ": 64.63,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.326,
"posY": 1.365,
"posZ": 73.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.66,
"posY": 1.474,
"posZ": 84.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 355.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.676,
"posY": 3.136,
"posZ": 67.719,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.452,
"posY": 1.517,
"posZ": 58.632,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.892,
"posY": 2.37,
"posZ": 45.325,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.002,
"posY": 1.36,
"posZ": 55.479,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.936,
"posY": 1.363,
"posZ": 67.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.414,
"posY": 3.577,
"posZ": 5.187,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.462,
"posY": 1.373,
"posZ": 73.762,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.639,
"posY": 1.377,
"posZ": 83.347,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.047,
"posY": 1.515,
"posZ": 81.208,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.301,
"posY": 1.371,
"posZ": 66.612,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.361,
"posZ": 60.44,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.283,
"posZ": 56.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.276,
"posY": 1.364,
"posZ": 69.709,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.151,
"posY": 3.577,
"posZ": 6.008,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.007,
"posY": 1.372,
"posZ": 76.505,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.384,
"posY": 1.365,
"posZ": 75.925,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.449,
"posY": 1.531,
"posZ": 58.771,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.254,
"posY": 3.135,
"posZ": 65.711,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.298,
"posY": 1.535,
"posZ": 73.754,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.375,
"posZ": 76.537,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.393,
"posY": 1.267,
"posZ": 76.337,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.774,
"posZ": 71.795,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.362,
"posZ": 62.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.5,
"posY": 3.135,
"posZ": 65.934,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.721,
"posY": 1.36,
"posZ": 57.834,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.637,
"posY": 1.668,
"posZ": 51.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.019,
"posY": 1.373,
"posZ": 83.524,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.11,
"posY": 1.375,
"posZ": 81.382,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.247,
"posY": 1.372,
"posZ": 69.506,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.393,
"posY": 1.268,
"posZ": 78.697,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.924,
"posY": 3.136,
"posZ": 66.02,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.02,
"posY": 1.373,
"posZ": 76.522,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.334,
"posZ": 56.478,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.282,
"posZ": 53.119,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.573,
"posY": 1.368,
"posZ": 67.003,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.967,
"posY": 1.375,
"posZ": 83.176,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.803,
"posY": 1.384,
"posZ": 91.599,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.5,
"posY": 1.52,
"posZ": 58.74,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.5,
"posY": 1.515,
"posZ": 58.74,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.495,
"posY": 1.367,
"posZ": 58.343,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.451,
"posY": 1.512,
"posZ": 58.279,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.292,
"posZ": 83.307,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.67,
"posY": 1.52,
"posZ": 80.59,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.67,
"posY": 1.32,
"posZ": 80.59,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.312,
"posZ": 85.607,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.66,
"posY": 1.474,
"posZ": 84.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 355.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.639,
"posY": 1.377,
"posZ": 83.347,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.967,
"posY": 1.375,
"posZ": 83.176,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.618,
"posY": 1.374,
"posZ": 83.386,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.019,
"posY": 1.373,
"posZ": 83.524,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.649,
"posY": 1.371,
"posZ": 83.453,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.304,
"posZ": 78.69,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
},
"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
},
"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.351,
"posY": 3.144,
"posZ": 62.635,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.752,
"posY": 3.144,
"posZ": 63.644,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.278,
"posY": 3.144,
"posZ": 61.545,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.706,
"posY": 3.221,
"posZ": 63.489,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.047,
"posY": 3.256,
"posZ": 67.255,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.306,
"posZ": 83.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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": "39452d",
"Name": "Card",
"Transform": {
"posX": -24.453,
"posY": 1.39,
"posZ": 83.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.398,
"posZ": 83.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.345,
"posZ": 90.581,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.977,
"posY": 1.321,
"posZ": 90.693,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.872,
"posY": 1.28,
"posZ": 90.616,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.301,
"posZ": 78.707,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4bcf5a",
"Name": "Card",
"Transform": {
"posX": -20.939,
"posY": 1.357,
"posZ": 78.707,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.375,
"posZ": 76.537,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.02,
"posY": 1.373,
"posZ": 76.522,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.007,
"posY": 1.372,
"posZ": 76.505,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.298,
"posZ": 53.407,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.647,
"posY": 1.333,
"posZ": 53.156,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.334,
"posZ": 56.478,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.282,
"posZ": 53.119,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.404,
"posZ": 55.707,
"rotX": 358.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.283,
"posZ": 56.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.297,
"posZ": 71.795,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.911,
"posY": 1.294,
"posZ": 77.746,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.096,
"posY": 1.306,
"posZ": 77.997,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.865,
"posY": 1.293,
"posZ": 80.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.571,
"posY": 1.293,
"posZ": 84.244,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.289,
"posZ": 71.807,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.573,
"posY": 1.368,
"posZ": 67.003,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.79,
"posY": 1.508,
"posZ": 66.889,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.33,
"posZ": 85.595,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.384,
"posY": 1.365,
"posZ": 75.925,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.234,
"posY": 1.366,
"posZ": 78.496,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.326,
"posY": 1.365,
"posZ": 73.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.276,
"posY": 1.364,
"posZ": 69.709,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.936,
"posY": 1.363,
"posZ": 67.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.118,
"posY": 1.481,
"posZ": 64.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 358.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.362,
"posZ": 62.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.361,
"posZ": 60.44,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.721,
"posY": 1.36,
"posZ": 57.834,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.002,
"posY": 1.36,
"posZ": 55.479,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.295,
"posZ": 76.407,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.462,
"posY": 1.373,
"posZ": 73.762,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.614,
"posY": 1.531,
"posZ": 73.921,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.298,
"posY": 1.535,
"posZ": 73.754,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.291,
"posZ": 62.607,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.814,
"posY": 1.28,
"posZ": 66.211,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.535,
"posY": 1.28,
"posZ": 61.974,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.809,
"posY": 1.314,
"posZ": 61.981,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.288,
"posZ": 69.507,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.939,
"posY": 1.359,
"posZ": 69.507,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.349,
"posZ": 69.507,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.3,
"posZ": 64.895,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.305,
"posY": 1.277,
"posZ": 70.741,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.048,
"posY": 1.512,
"posZ": 70.388,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 11.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.26,
"posY": 1.365,
"posZ": 70.171,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.285,
"posY": 1.376,
"posZ": 70.532,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.961,
"posY": 1.386,
"posZ": 70.419,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.295,
"posZ": 58.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.301,
"posY": 1.371,
"posZ": 66.612,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.247,
"posY": 1.372,
"posZ": 69.506,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.449,
"posY": 1.531,
"posZ": 58.771,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.452,
"posY": 1.517,
"posZ": 58.632,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.558,
"posZ": 57.995,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": {
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
},
"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
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6a0d53",
"Name": "Card",
"Transform": {
"posX": -3.362,
"posY": 1.274,
"posZ": 58.897,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.186,
"posY": 1.321,
"posZ": 58.864,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.306,
"posY": 1.351,
"posZ": 58.824,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.252,
"posY": 1.359,
"posZ": 58.918,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.118,
"posY": 1.367,
"posZ": 58.648,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.911,
"posY": 1.294,
"posZ": 77.746,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.096,
"posY": 1.306,
"posZ": 77.997,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.865,
"posY": 1.293,
"posZ": 80.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.571,
"posY": 1.293,
"posZ": 84.244,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.814,
"posY": 1.28,
"posZ": 66.211,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.535,
"posY": 1.28,
"posZ": 61.974,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.809,
"posY": 1.314,
"posZ": 61.981,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.618,
"posY": 1.374,
"posZ": 83.386,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.614,
"posY": 1.531,
"posZ": 73.921,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.333,
"posZ": 53.156,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.649,
"posY": 1.371,
"posZ": 83.453,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.234,
"posY": 1.366,
"posZ": 78.496,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.633,
"posY": 2.37,
"posZ": 46.43,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.79,
"posY": 1.508,
"posZ": 66.889,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.026,
"posY": 3.143,
"posZ": 62.687,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.225,
"posY": 3.135,
"posZ": 64.63,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.326,
"posY": 1.365,
"posZ": 73.12,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.66,
"posY": 1.474,
"posZ": 84.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 355.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.676,
"posY": 3.136,
"posZ": 67.719,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.452,
"posY": 1.517,
"posZ": 58.632,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.892,
"posY": 2.37,
"posZ": 45.325,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.002,
"posY": 1.36,
"posZ": 55.479,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.936,
"posY": 1.363,
"posZ": 67.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.414,
"posY": 3.577,
"posZ": 5.187,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.462,
"posY": 1.373,
"posZ": 73.762,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.639,
"posY": 1.377,
"posZ": 83.347,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.047,
"posY": 1.515,
"posZ": 81.208,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.301,
"posY": 1.371,
"posZ": 66.612,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.361,
"posZ": 60.44,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.283,
"posZ": 56.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.276,
"posY": 1.364,
"posZ": 69.709,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.151,
"posY": 3.577,
"posZ": 6.008,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.007,
"posY": 1.372,
"posZ": 76.505,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.384,
"posY": 1.365,
"posZ": 75.925,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.449,
"posY": 1.531,
"posZ": 58.771,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.254,
"posY": 3.135,
"posZ": 65.711,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.298,
"posY": 1.535,
"posZ": 73.754,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.77,
"posY": 1.375,
"posZ": 76.537,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.393,
"posY": 1.267,
"posZ": 76.337,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.453,
"posY": 1.774,
"posZ": 71.795,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.233,
"posY": 1.362,
"posZ": 62.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.5,
"posY": 3.135,
"posZ": 65.934,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.721,
"posY": 1.36,
"posZ": 57.834,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.637,
"posY": 1.668,
"posZ": 51.295,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.019,
"posY": 1.373,
"posZ": 83.524,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.11,
"posY": 1.375,
"posZ": 81.382,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.247,
"posY": 1.372,
"posZ": 69.506,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.393,
"posY": 1.268,
"posZ": 78.697,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.924,
"posY": 3.136,
"posZ": 66.02,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.02,
"posY": 1.373,
"posZ": 76.522,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.334,
"posZ": 56.478,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.647,
"posY": 1.282,
"posZ": 53.119,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.573,
"posY": 1.368,
"posZ": 67.003,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.967,
"posY": 1.375,
"posZ": 83.176,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.939,
"posY": 1.297,
"posZ": 64.907,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.5,
"posY": 1.52,
"posZ": 58.74,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.5,
"posY": 1.515,
"posZ": 58.74,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.495,
"posY": 1.367,
"posZ": 58.343,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.451,
"posY": 1.512,
"posZ": 58.279,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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",
"Transform": {
"posX": -33.801,
"posY": 1.38,
"posZ": 91.603,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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,
"CustomMesh": {
"MeshURL": "https://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/",
"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": "-- 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(\"playercards/spawnbag/BondedBag\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"playercards/spawnbag/SpawnBag\")\n\nSPAWN_SPEC = {\n name = \"BondedCards\",\n cards = {\n \"05314\", -- Soothing Melody\n \"06277\", -- Wish Eater\n \"06019\", -- Bloodlust\n \"06022\", -- Pendant of the Queen\n \"05317\", -- Blood-rite\n \"06113\", -- Essence of the Dream\n \"06028\", -- Stars Are Right\n \"06025\", -- Guardian of the Crystallizer\n \"06283\", -- Unbound Beast\n \"06032\", -- Zeal\n \"06031\", -- Hope\n \"06033\", -- Augur\n \"06331\", -- Dream Parasite\n \"06015a\", -- Dream-Gate\n },\n globalPos = { x = -33.88, y = 1.5, z = 85.61 },\n rotation = { x = 0, y = 270, z = 0 },\n spread = true,\n}\n\nfunction onLoad(savedData)\n if (savedData ~= nil) then\n local saveState = JSON.decode(savedData)\n if (saveState.spawnBagState ~= nil) then\n SpawnBag.loadFromSave(saveState.spawnBagState)\n end\n end\n createActionButtons()\nend\n\nfunction onSave()\n local saveState = {\n spawnBagState = SpawnBag.getStateForSave(),\n }\n return JSON.encode(saveState)\nend\n\nfunction createActionButtons()\n self.createButton({\n label=\"Place\",\n click_function=\"buttonClick_place\",\n function_owner=self,\n position={1,0.1,2.1},\n rotation={0,0,0},\n height=350,\n width=800,\n font_size=250,\n color={0,0,0},\n font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\",\n click_function=\"buttonClick_recall\",\n function_owner=self,\n position={-1,0.1,2.1},\n rotation={0,0,0},\n height=350,\n width=800,\n font_size=250,\n color={0,0,0},\n font_color={1,1,1}\n })\nend\n\nfunction buttonClick_place()\n SpawnBag.spawn(SPAWN_SPEC)\nend\n\n-- Recalls objects to bag from table\nfunction buttonClick_recall()\n SpawnBag.recall()\nend\nend)\n__bundle_register(\"playercards/spawnbag/SpawnBag\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"playercards/PlayerCardSpawner\")\n\n-- Allows spawning of defined lists of cards which will be created from the template in the All\n-- Player Cards bag. SpawnBag.spawn will create objects based on a table definition, while\n-- SpawnBag.recall will clean them all up. Recall will be limited to a small area around the\n-- spawned objects. Objects moved out of this area will not be cleaned up.\n--\n-- SpawnSpec: Spawning requires a spawn specification with the following structure:\n-- {\n-- name: Name of this spawn content, used for internal tracking. Multiple specs can be spawned,\n-- but each requires a separate name\n-- cards: A list of card IDs to be spawned\n-- globalPos: Where the spawned objects should be placed, in global coordinates. This should be\n-- a valid Vector with x, y, and z defined, e.g. { x = 5, y = 1, z = 15 }\n-- rotation: Rotation for the spawned objects. X=180 should be used for face down items. As with\n-- globalPos, this should be a valid Vector with x, y, and z defined\n-- spread: Optional. If present and true, cards will be spawned next to each other in a spread\n-- moving to the right. globalPos will define the location of the first card, each after that\n-- will be moved a predefined distance\n-- }\n-- See BondedBag.ttslua for an example\n\nSpawnBag = { }\n\n-- To assist debugging, will draw a box around the recall zone when it's set up\nlocal SHOW_RECALL_ZONE = false\n\nlocal ALL_CARDS_GUID = \"15bb07\"\n\n-- Distance to expand the recall zone around any added object.\nlocal RECALL_BUFFER_X = 0.9\nlocal RECALL_BUFFER_Z = 0.5\n\n-- In order to mimic the behavior of the previous memory buttons we use a temporary bag when\n-- recalling objects. This bag is tiny and transparent, and will be placed at the same location as\n-- this object. Once all placed cards are recalled bag to this bag, it will be destroyed\nlocal RECALL_BAG = {\n Name = \"Bag\",\n Transform = {\n scaleX = 0.01,\n scaleY = 0.01,\n scaleZ = 0.01,\n },\n ColorDiffuse = {\n r = 0,\n g = 0,\n b = 0,\n a = 0,\n },\n Locked = true,\n Grid = true,\n Snap = false,\n Tooltip = false,\n}\n\n-- Tracks what has been placed by this \"bag\" so they can be recalled\nlocal placedSpecs = { }\nlocal placedObjectGuids = { }\nlocal recallZone = nil\n\n-- Loads a table of saved state, extracted during the parent object's onLoad\nSpawnBag.loadFromSave = function(saveTable)\n placedSpecs = saveTable.placed\n placedObjectGuids = saveTable.placedObjects\n recallZone = saveTable.recall\nend\n\n-- Generates a table of save state that can be included in the parent object's onSave\nSpawnBag.getStateForSave = function()\n return {\n placed = placedSpecs,\n placedObjects = placedObjectGuids,\n recall = recallZone,\n }\nend\n\n-- Places the given spawnSpec on the table. See SpawnBag.ttslua header for spawnSpec table data and\n-- examples\nSpawnBag.spawn = function(spawnSpec)\n -- Limit to one placement at a time\n if (placedSpecs[spawnSpec.name]) then\n return\n end\n if (spawnSpec == nil) then\n -- TODO: error here\n return\n end\n local cardsToSpawn = { }\n local allCardsBag = getObjectFromGUID(ALL_CARDS_GUID)\n for _, cardId in ipairs(spawnSpec.cards) do\n local cardData = allCardsBag.call(\"getCardById\", { id = cardId })\n if (cardData ~= nil) then\n table.insert(cardsToSpawn, cardData)\n else\n -- TODO: error here\n end\n end\n if (spawnSpec.spread) then\n Spawner.spawnCardSpread(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject)\n else\n Spawner.spawnCards(cardsToSpawn, spawnSpec.globalPos, spawnSpec.rotation, false, recordPlacedObject)\n end\n placedSpecs[spawnSpec.name] = true\nend\n\n-- Recalls all spawned objects to the bag, and clears the placedObjectGuids list\nSpawnBag.recall = function()\n local trash = spawnObjectData({data = RECALL_BAG, position = self.getPosition()})\n for guid, _ in pairs(placedObjectGuids) do\n local obj = getObjectFromGUID(guid)\n if (obj ~= nil) then\n if (isInRecallZone(obj)) then\n trash.putObject(obj)\n end\n placedObjectGuids[guid] = nil\n end\n end\n\n trash.destruct()\n -- We've recalled everything we can, some cards may have been moved out of the\n -- card area. Just reset at this point.\n placedSpecs = { }\n placedObjectGuids = { }\n recallZone = nil\nend\n\n-- Callback for when an object has been spawned. Tracks the object for later recall and updates the\n-- recall zone.\nfunction recordPlacedObject(spawned)\n placedObjectGuids[spawned.getGUID()] = true\n expandRecallZone(spawned)\nend\n\n-- Expands the current recall zone based on the position of the given object. The recall zone will\n-- be maintained as the bounding box of the extreme object positions, plus a small amount of buffer\nfunction expandRecallZone(spawnedCard)\n local pos = spawnedCard.getPosition()\n if (recallZone == nil) then\n -- First card out of the bag, initialize surrounding that\n recallZone = { }\n recallZone.upperLeft = { x = pos.x + RECALL_BUFFER_X, z = pos.z + RECALL_BUFFER_Z }\n recallZone.lowerRight = { x = pos.x - RECALL_BUFFER_X, z = pos.z - RECALL_BUFFER_Z }\n return\n else\n if (pos.x > recallZone.upperLeft.x) then\n recallZone.upperLeft.x = pos.x + RECALL_BUFFER_X\n end\n if (pos.x < recallZone.lowerRight.x) then\n recallZone.lowerRight.x = pos.x - RECALL_BUFFER_X\n end\n if (pos.z > recallZone.upperLeft.z) then\n recallZone.upperLeft.z = pos.z + RECALL_BUFFER_Z\n end\n if (pos.z < recallZone.lowerRight.z) then\n recallZone.lowerRight.z = pos.z - RECALL_BUFFER_Z\n end\n end\n if (SHOW_RECALL_ZONE) then\n local y = 1.5\n local thick = 0.05\n Global.setVectorLines({\n {\n points = { {recallZone.upperLeft.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.lowerRight.z} },\n color = {1,0,0},\n thickness = thick,\n rotation = {0,0,0},\n },\n {\n points = { {recallZone.upperLeft.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.lowerRight.z} },\n color = {1,0,0},\n thickness = thick,\n rotation = {0,0,0},\n },\n {\n points = { {recallZone.lowerRight.x,y,recallZone.lowerRight.z}, {recallZone.lowerRight.x,y,recallZone.upperLeft.z} },\n color = {1,0,0},\n thickness = thick,\n rotation = {0,0,0},\n },\n {\n points = { {recallZone.lowerRight.x,y,recallZone.upperLeft.z}, {recallZone.upperLeft.x,y,recallZone.upperLeft.z} },\n color = {1,0,0},\n thickness = thick,\n rotation = {0,0,0},\n },\n })\n end\nend\n\n-- Checks to see if the given object is in the current recall zone. If there isn't a recall zone,\n-- will return true so that everything can be easily cleaned up.\nfunction isInRecallZone(obj)\n if (recallZone == nil) then\n return true\n end\n local pos = obj.getPosition()\n return (pos.x < recallZone.upperLeft.x and pos.x > recallZone.lowerRight.x\n and pos.z < recallZone.upperLeft.z and pos.z > recallZone.lowerRight.z)\nend\nend)\n__bundle_register(\"playercards/PlayerCardSpawner\", function(require, _LOADED, __bundle_register, __bundle_modules)\n\n-- Amount to shift for the next card (zShift) or next row of cards (xShift)\n-- Note that the table rotation is weird, and the X axis is vertical while the\n-- Z axis is horizontal\nlocal SPREAD_Z_SHIFT = -2.3\n\nSpawner = { }\n\n-- Spawns a list of cards at the given position/rotation. This will separate cards by size -\n-- investigator, standard, and mini, spawning them in that order with larger cards on bottom. If\n-- there are different types, the provided callback will be called once for each type as it spawns\n-- either a card or deck.\n-- @param cardList: A list of Player Card data structures (data/metadata)\n-- @param pos Position table where the cards should be spawned (global)\n-- @param rot Rotation table for the orientation of the spawned cards (global)\n-- @param sort Boolean, true if this list of cards should be sorted before spawning\n-- @param callback Function, callback to be called after the card/deck spawns.\nSpawner.spawnCards = function(cardList, pos, rot, sort, callback)\n if (sort) then\n table.sort(cardList, Spawner.cardComparator)\n end\n\n local miniCards = { }\n local standardCards = { }\n local investigatorCards = { }\n\n for _, card in ipairs(cardList) do\n if (card.metadata.type == \"Investigator\") then\n table.insert(investigatorCards, card)\n elseif (card.metadata.type == \"Minicard\") then\n table.insert(miniCards, card)\n else\n table.insert(standardCards, card)\n end\n end\n -- Spawn each of the three types individually. Each Y position shift accounts for the thickness\n -- of the spawned deck\n local position = { x = pos.x, y = pos.y, z = pos.z }\n Spawner.spawn(investigatorCards, position, { rot.x, rot.y - 90, rot.z}, callback)\n\n position.y = position.y + (#investigatorCards + #standardCards) * 0.07\n Spawner.spawn(standardCards, position, rot, callback)\n\n position.y = position.y + (#standardCards + #miniCards) * 0.07\n Spawner.spawn(miniCards, position, rot, callback)\nend\n\nSpawner.spawnCardSpread = function(cardList, startPos, rot, sort, callback)\n if (sort) then\n table.sort(cardList, Spawner.cardComparator)\n end\n\n local position = { x = startPos.x, y = startPos.y, z = startPos.z }\n for _, card in ipairs(cardList) do\n Spawner.spawn({ card }, position, rot, callback)\n position.z = position.z + SPREAD_Z_SHIFT\n end\nend\n\n-- Spawn a specific list of cards. This method is for internal use and should not be called\n-- directly, use spawnCards instead.\n-- @param cardList: A list of Player Card data structures (data/metadata)\n-- @param pos Position table where the cards should be spawned (global)\n-- @param rot Rotation table for the orientation of the spawned cards (global)\n-- @param callback Function, callback to be called after the card/deck spawns.\nSpawner.spawn = function(cardList, pos, rot, callback)\n if (#cardList == 0) then\n return\n end\n -- Spawn a single card directly\n if (#cardList == 1) then\n spawnObjectData({\n data = cardList[1].data,\n position = pos,\n rotation = rot,\n callback_function = callback,\n })\n return\n end\n -- For multiple cards, construct a deck and spawn that\n local deck = Spawner.buildDeckDataTemplate()\n -- Decks won't inherently scale to the cards in them. The card list being spawned should be all\n -- the same type/size by this point, so use the first card to set the size\n deck.Transform = {\n scaleX = cardList[1].data.Transform.scaleX,\n scaleY = 1,\n scaleZ = cardList[1].data.Transform.scaleZ,\n }\n for _, spawnCard in ipairs(cardList) do\n Spawner.addCardToDeck(deck, spawnCard.data)\n end\n spawnObjectData({\n data = deck,\n position = pos,\n rotation = rot,\n callback_function = callback,\n })\nend\n\n-- Inserts a card into the given deck. This does three things:\n-- 1. Add the card's data to ContainedObjects\n-- 2. Add the card's ID (the TTS CardID, not the Arkham ID) to the deck's\n-- ID list. Note that the deck's ID list is \"DeckIDs\" even though it\n-- contains a list of card Ids\n-- 3. Extract the card's CustomDeck table and add it to the deck. The deck's\n-- \"CustomDeck\" field is a list of all CustomDecks used by cards within the\n-- deck, keyed by the DeckID and referencing the custom deck table\n---@param deck: TTS deck data structure to add to\n---@param card: Data for the card to be inserted\nSpawner.addCardToDeck = function(deck, cardData)\n for customDeckId, customDeckData in pairs(cardData.CustomDeck) do\n if (deck.CustomDeck[customDeckId] == nil) then\n -- CustomDeck not added to deck yet, add it\n deck.CustomDeck[customDeckId] = customDeckData\n elseif (deck.CustomDeck[customDeckId].FaceURL == customDeckData.FaceURL) then\n -- CustomDeck for this card matches the current one for the deck, do nothing\n else\n -- CustomDeck data conflict\n local newDeckId = nil\n for deckId, customDeck in pairs(deck.CustomDeck) do\n if (customDeckData.FaceURL == customDeck.FaceURL) then\n newDeckId = deckId\n end\n end\n if (newDeckId == nil) then\n -- No non-conflicting custom deck for this card, add a new one\n newDeckId = Spawner.findNextAvailableId(deck.CustomDeck, \"1000\")\n deck.CustomDeck[newDeckId] = customDeckData\n end\n -- Update the card with the new CustomDeck info\n cardData.CardID = newDeckId..string.sub(cardData.CardID, 5)\n cardData.CustomDeck[customDeckId] = nil\n cardData.CustomDeck[newDeckId] = customDeckData\n break\n end\n end\n table.insert(deck.ContainedObjects, cardData)\n table.insert(deck.DeckIDs, cardData.CardID)\nend\n\n-- Create an empty deck data table which can have cards added to it. This\n-- creates a new table on each call without using metatables or previous\n-- definitions because we can't be sure that TTS doesn't modify the structure\n---@return: Table containing the minimal TTS deck data structure\nSpawner.buildDeckDataTemplate = function()\n local deck = {}\n deck.Name = \"Deck\"\n\n -- Card data. DeckIDs and CustomDeck entries will be built from the cards\n deck.ContainedObjects = {}\n deck.DeckIDs = {}\n deck.CustomDeck = {}\n\n -- Transform is required, Position and Rotation will be overridden by the spawn call so can be omitted here\n deck.Transform = {\n scaleX = 1,\n scaleY = 1,\n scaleZ = 1,\n }\n\n return deck\nend\n\n-- Returns the first ID which does not exist in the given table, starting at startId and increasing\n-- @param objectTable Table keyed by strings which are numbers\n-- @param startId First possible ID.\n-- @return String ID >= startId\nSpawner.findNextAvailableId = function(objectTable, startId)\n local id = startId\n while (objectTable[id] ~= nil) do\n id = tostring(tonumber(id) + 1)\n end\n\n return id\nend\n\n-- Get the PBCN (Permanent/Bonded/Customizable/Normal) value from the given metadata.\n---@return: 1 for Permanent, 2 for Bonded or 4 for Normal. The actual values are\n-- irrelevant as they provide only grouping and the order between them doesn't matter.\nSpawner.getpbcn = function(metadata)\n if metadata.permanent then\n return 1\n elseif metadata.bonded_to ~= nil then\n return 2\n else -- Normal card\n return 3\n end\nend\n\n-- Comparison function used to sort the cards in a deck. Groups bonded or\n-- permanent cards first, then sorts within theose types by name/subname.\n-- Normal cards will sort in standard alphabetical order, while\n-- permanent/bonded/customizable will be in reverse alphabetical order.\n--\n-- Since cards spawn in the order provided by this comparator, with the first\n-- cards ending up at the bottom of a pile, this ordering will spawn in reverse\n-- alphabetical order. This presents the cards in order for non-face-down\n-- areas, and presents them in order when Searching the face-down deck.\nSpawner.cardComparator = function(card1, card2)\n local pbcn1 = Spawner.getpbcn(card1.metadata)\n local pbcn2 = Spawner.getpbcn(card2.metadata)\n if pbcn1 ~= pbcn2 then\n return pbcn1 > pbcn2\n end\n if pbcn1 == 3 then\n if card1.data.Nickname ~= card2.data.Nickname then\n return card1.data.Nickname < card2.data.Nickname\n end\n return card1.data.Description < card2.data.Description\n else\n if card1.data.Nickname ~= card2.data.Nickname then\n return card1.data.Nickname > card2.data.Nickname\n end\n return card1.data.Description > card2.data.Description\n end\nend\nend)\n__bundle_register(\"__root\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"playercards/spawnbag/BondedBag\")\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "{\"spawnBagState\":{\"placed\":[],\"placedObjects\":[]}}",
"XmlUI": ""
},
{
"GUID": "b7af15",
"Name": "BlockRectangle",
"Transform": {
"posX": -29.257,
"posY": 1.351,
"posZ": -70.291,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.09,
"scaleY": 0.11,
"scaleZ": 22.95
},
"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.94,
"posY": 1.47,
"posZ": 0.0,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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": "-- 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(\"core/PlayArea\")\nend)\n__bundle_register(\"core/PlayArea\", function(require, _LOADED, __bundle_register, __bundle_modules)\n---------------------------------------------------------\n-- general setup\n---------------------------------------------------------\n\n-- set true to enable debug logging\nDEBUG = false\n\n-- we use this to turn off collision handling until onLoad() is complete\nCOLLISION_ENABLED = false\n\nlocal INVESTIGATOR_COUNTER_GUID = \"f182ee\"\nlocal clueData = {}\nspawnedLocationGUIDs = {}\n\n---------------------------------------------------------\n-- general code\n---------------------------------------------------------\n\nfunction onSave() return JSON.encode(spawnedLocationGUIDs) end\n\nfunction onLoad(save_state)\n -- records locations we have spawned clues for\n spawnedLocationGUIDs = JSON.decode(save_state) or {}\n\n local TOKEN_DATA = Global.getTable('TOKEN_DATA')\n clueData = {\n thickness = 0.1,\n stackable = true,\n type = 2,\n image = TOKEN_DATA.clue.image,\n image_bottom = TOKEN_DATA.doom.image\n }\n\n local dataHelper = getObjectFromGUID('708279')\n LOCATIONS = dataHelper.getTable('LOCATIONS_DATA')\n\n self.interactable = DEBUG\n Wait.time(function() COLLISION_ENABLED = true end, 1)\nend\n\nfunction log(message)\n if DEBUG then print(message) end\nend\n\n---------------------------------------------------------\n-- clue spawning\n---------------------------------------------------------\n\n-- try the compound key then the name alone as default\nfunction getLocation(object)\n return LOCATIONS[object.getName() .. '_' .. object.getGUID()] or LOCATIONS[object.getName()]\nend\n\n-- Return the number of clues to spawn on this location\nfunction getClueCount(object, isFaceDown, playerCount)\n local details = getLocation(object)\n if details == nil then\n error('attempted to get clue for unexpected object: ' .. object.getName())\n end\n\n log(object.getName() .. ' : ' .. details['type'] .. ' : ' .. details['value'] .. ' : ' .. details['clueSide'])\n if ((isFaceDown and details['clueSide'] == 'back') or (not isFaceDown and details['clueSide'] == 'front')) then\n if details['type'] == 'fixed' then\n return details['value']\n elseif details['type'] == 'perPlayer' then\n return details['value'] * playerCount\n end\n error('unexpected location type: ' .. details['type'])\n end\n return 0\nend\n\nfunction spawnCluesAtLocation(clueCount, object)\n if spawnedLocationGUIDs[object.getGUID()] ~= nil then\n error('tried to spawn clue for already spawned location:' .. object.getName())\n end\n\n log('spawning clues for ' .. object.getName() .. '_' .. object.getGUID())\n log('player count is ' .. getInvestigatorCount() .. ', clue count is ' .. clueCount)\n\n -- mark this location as spawned, can't happen again\n spawnedLocationGUIDs[object.getGUID()] = true\n\n -- spawn clues (starting top right, moving to the next row after 4 clues)\n local pos = object.getPosition()\n for i = 1, clueCount do\n local row = math.floor(1 + (i - 1) / 4)\n local column = (i - 1) % 4\n spawnClue({ pos.x + 1.5 - 0.55 * row, pos.y, pos.z - 0.825 + 0.55 * column })\n end\nend\n\nfunction spawnClue(position)\n local token = spawnObject({\n position = position,\n rotation = { 3.88, -90, 0.24 },\n type = 'Custom_Tile'\n })\n\n token.setCustomObject(clueData)\n token.scale { 0.25, 1, 0.25 }\n token.use_snap_points = false\nend\n\nfunction updateLocations(args)\n custom_data_helper_guid = args[1]\n local custom_data_helper = getObjectFromGUID(args[1])\n\n for k, v in pairs(custom_data_helper.getTable(\"LOCATIONS_DATA\")) do\n LOCATIONS[k] = v\n end\nend\n\nfunction onCollisionEnter(collision_info)\n if not COLLISION_ENABLED then return end\n\n -- check if we should spawn clues here and do so according to playercount\n local object = collision_info.collision_object\n if getLocation(object) ~= nil and spawnedLocationGUIDs[object.getGUID()] == nil then\n local clueCount = getClueCount(object, object.is_face_down, getInvestigatorCount())\n if clueCount > 0 then spawnCluesAtLocation(clueCount, object) end\n end\nend\n\nfunction getInvestigatorCount()\n local investigatorCounter = getObjectFromGUID('f182ee')\n return investigatorCounter.getVar(\"val\")\nend\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "[]",
"XmlUI": ""
},
{
"GUID": "184810",
"Name": "3DText",
"Transform": {
"posX": -26.787962,
"posY": 1.49999607,
"posZ": 78.69103,
"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.28,
"posY": 1.472,
"posZ": -70.618,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.09,
"scaleY": 0.11,
"scaleZ": 24.36
},
"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.338,
"posY": 1.29500115,
"posZ": -86.776,
"rotX": 6.041881E-08,
"rotY": 270.0,
"rotZ": 1.28364917E-07,
"scaleX": 0.5,
"scaleY": 0.14,
"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.939,
"posY": 2.009,
"posZ": 81.007,
"rotX": 359.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.717,
"posY": 1.973,
"posZ": -126.28,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.75,
"scaleY": 0.37,
"scaleZ": 1.92
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "48b4ca",
"Name": "Custom_Model",
"Transform": {
"posX": -24.825,
"posY": 2.361,
"posZ": -62.966,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Streets of New Capenna",
"Description": "",
"GMNotes": "fancreations/investigators_SNC.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1853807409892957080/8BAF356ADEADE6CF377438200268899C64FA420E/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"00df29\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3082,\"z\":92.4413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"1d30b7\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3022,\"z\":76.3528},\"rot\":{\"x\":0.0208,\"y\":270.0235,\"z\":0.0168}},\"24ebf7\":{\"lock\":false,\"pos\":{\"x\":45.98,\"y\":1.3049,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":269.9692,\"z\":0.0168}},\"289dcb\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3029,\"z\":74.0413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"2aaa95\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3035,\"z\":76.3413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"35fa26\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.3018,\"z\":85.5488},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"3e8f18\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3069,\"z\":87.8413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"43d9b3\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3062,\"z\":85.5412},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"450971\":{\"lock\":false,\"pos\":{\"x\":49.5625,\"y\":1.2995,\"z\":67.1528},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"4bf11c\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.2977,\"z\":71.7487},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"4f3c6c\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3036,\"z\":80.9528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"57acdc\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3049,\"z\":85.5528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"655321\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3024,\"z\":87.8488},\"rot\":{\"x\":0.0208,\"y\":269.9823,\"z\":0.0168}},\"6724b6\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3062,\"z\":90.1528},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"73aa68\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.3011,\"z\":83.2487},\"rot\":{\"x\":0.0208,\"y\":269.9993,\"z\":0.0168}},\"73bf72\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3029,\"z\":83.2529},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"774533\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3031,\"z\":90.1488},\"rot\":{\"x\":0.0208,\"y\":269.9823,\"z\":0.0168}},\"776d45\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3015,\"z\":69.4413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7b7c48\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3036,\"z\":85.5528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"7e4fd8\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3008,\"z\":67.1412},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"822ea2\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3069,\"z\":92.4528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"84f3bc\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3009,\"z\":71.7528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"91b291\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3015,\"z\":74.0528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"94d7d7\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3049,\"z\":80.9413},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"99b2e7\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.2998,\"z\":78.6487},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"9ad531\":{\"lock\":false,\"pos\":{\"x\":40.9611,\"y\":1.3038,\"z\":92.4497},\"rot\":{\"x\":0.0208,\"y\":270.0154,\"z\":0.0168}},\"9f5e6e\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.2984,\"z\":74.0487},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"9ff2b3\":{\"lock\":false,\"pos\":{\"x\":49.5628,\"y\":1.3002,\"z\":69.4528},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"a0038c\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3002,\"z\":64.8411},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"aaf8ac\":{\"lock\":false,\"pos\":{\"x\":58.3839,\"y\":1.3094,\"z\":90.0904},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":180.0168}},\"af9875\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3056,\"z\":87.8529},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"b6e7d4\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3056,\"z\":83.2413},\"rot\":{\"x\":0.0208,\"y\":269.9997,\"z\":0.0168}},\"c2b022\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.2988,\"z\":64.8527},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"cf0176\":{\"lock\":false,\"pos\":{\"x\":53.2286,\"y\":1.3022,\"z\":71.7413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"d474aa\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3022,\"z\":80.9528},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168}},\"e20a09\":{\"lock\":false,\"pos\":{\"x\":53.2288,\"y\":1.3076,\"z\":90.1413},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"e5cc63\":{\"lock\":false,\"pos\":{\"x\":40.9603,\"y\":1.2991,\"z\":76.3487},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168}},\"ec5825\":{\"lock\":false,\"pos\":{\"x\":45.98,\"y\":1.3056,\"z\":92.4529},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"f44618\":{\"lock\":false,\"pos\":{\"x\":49.5629,\"y\":1.3042,\"z\":83.2528},\"rot\":{\"x\":0.0208,\"y\":269.9999,\"z\":0.0168}},\"f6916e\":{\"lock\":false,\"pos\":{\"x\":58.3838,\"y\":1.3101,\"z\":92.3904},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"f7b278\":{\"lock\":false,\"pos\":{\"x\":45.9795,\"y\":1.3043,\"z\":87.8529},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"fc411e\":{\"lock\":false,\"pos\":{\"x\":40.9602,\"y\":1.3004,\"z\":80.9487},\"rot\":{\"x\":0.0208,\"y\":269.9717,\"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": "d78bd2",
"Name": "Custom_Model",
"Transform": {
"posX": -17.434,
"posY": 2.826,
"posZ": -101.73,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.34,
"posY": 1.973,
"posZ": -111.047,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.35294,
"g": 0.34902,
"b": 0.34902
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.12,
"posY": 3.27,
"posZ": -93.318,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.314,
"posY": 1.973,
"posZ": -114.792,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.963,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.871,
"posY": 1.973,
"posZ": -114.771,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.4,
"scaleY": 0.29,
"scaleZ": 1.53
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.963,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.962,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "814e2a",
"Name": "Custom_Model",
"Transform": {
"posX": -57.863,
"posY": 2.38,
"posZ": -72.018,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Magical Girl Arkham Project",
"Description": "",
"GMNotes": "fancreations/investigators_magical_girl.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1903353113607751170/B835836D4DB21CA06206BF84EEAAD6B3E6C157CB/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"28957b\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.1159,\"z\":-61.2332},\"rot\":{\"x\":359.9792,\"y\":90.0003,\"z\":359.9832}},\"6f2834\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.1089,\"z\":-84.8182},\"rot\":{\"x\":359.9792,\"y\":90.0013,\"z\":359.9832}},\"b4a99c\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.1181,\"z\":-53.4358},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"cfa958\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.111,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":89.9785,\"z\":359.9832}},\"e8b5fc\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.1113,\"z\":-76.9415},\"rot\":{\"x\":359.9792,\"y\":90.0002,\"z\":359.9832}},\"f6152e\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3223,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":269.9924,\"z\":0.0168}},\"f6199b\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.1136,\"z\":-69.0607},\"rot\":{\"x\":359.9792,\"y\":90.0047,\"z\":359.9832}}}}",
"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.926,
"posY": 1.973,
"posZ": -99.815,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.35294,
"g": 0.34902,
"b": 0.34902
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.685,
"posY": 2.827,
"posZ": -108.225,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.835,
"posY": 1.973,
"posZ": 81.635,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.192,
"posY": 2.828,
"posZ": -121.341,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.96,
"scaleY": 0.27,
"scaleZ": 0.96
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33272e",
"Name": "Custom_Model",
"Transform": {
"posX": -20.939,
"posY": 1.978,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.978,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.963,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.939,
"posY": 1.978,
"posZ": 81.007,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.849,
"posY": 2.001,
"posZ": -87.567,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.36,
"scaleY": 0.28,
"scaleZ": 1.49
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "880860",
"Name": "Custom_Model",
"Transform": {
"posX": 19.669,
"posY": 2.25,
"posZ": -97.901,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Dead Space Investigators",
"Description": "",
"GMNotes": "fancreations/investigators_dead_space.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1898848485543773146/5255CF70ED228D9C98E4C9F4F010577A77B5C46E/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"0e87e4\":{\"lock\":false,\"pos\":{\"x\":-19.2996,\"y\":1.3121,\"z\":-53.4354},\"rot\":{\"x\":0.0208,\"y\":270.0032,\"z\":0.0168}},\"31bcc4\":{\"lock\":false,\"pos\":{\"x\":-19.2931,\"y\":1.3052,\"z\":-76.9412},\"rot\":{\"x\":0.0208,\"y\":269.9995,\"z\":0.0168}},\"664a1f\":{\"lock\":false,\"pos\":{\"x\":-19.2954,\"y\":1.3075,\"z\":-69.0603},\"rot\":{\"x\":0.0208,\"y\":269.9912,\"z\":0.0168}},\"778b85\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3661,\"z\":-69.0606},\"rot\":{\"x\":359.9792,\"y\":90,\"z\":359.9832}},\"a8b092\":{\"lock\":false,\"pos\":{\"x\":-18.4906,\"y\":1.3421,\"z\":-92.0345},\"rot\":{\"x\":0.0208,\"y\":269.996,\"z\":0.0168}},\"d008cb\":{\"lock\":false,\"pos\":{\"x\":-19.2989,\"y\":1.3029,\"z\":-84.8179},\"rot\":{\"x\":0.0208,\"y\":269.9994,\"z\":0.0168}},\"e9a591\":{\"lock\":false,\"pos\":{\"x\":-19.2996,\"y\":1.3098,\"z\":-61.2329},\"rot\":{\"x\":0.0208,\"y\":269.9969,\"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": "524fbc",
"Name": "Custom_Model",
"Transform": {
"posX": -23.615,
"posY": 1.916,
"posZ": -135.631,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.5,
"scaleY": 0.14,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\n font_size=700, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\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": "dd90c5",
"Name": "Custom_Model",
"Transform": {
"posX": 18.946,
"posY": 1.916,
"posZ": -135.806,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.18,
"scaleY": 0.45,
"scaleZ": 2.38
},
"Nickname": "Battle Goes On",
"Description": "by The Popest",
"GMNotes": "fancreations/investigators_battle_goes_on.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/F4W3qLq.jpg",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.735294163,
"g": 0.735294163,
"b": 0.735294163
},
"SpecularIntensity": 5.0,
"SpecularSharpness": 8.0,
"FresnelStrength": 0.7999996
},
"CastShadows": true
},
"LuaScript": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\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": "",
"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": "0a1d16",
"Name": "Custom_Model",
"Transform": {
"posX": -22.821,
"posY": 2.225,
"posZ": -97.676,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "The Bad Batch",
"Description": "",
"GMNotes": "fancreations/investigators_bad_batch.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.02353,
"g": 0.00392,
"b": 0.02353,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"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/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": 0,
"CastShadows": true
},
"LuaScript": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,-1}, rotation={0,180,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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
}
},
{
"GUID": "2f8332",
"Name": "Custom_Model",
"Transform": {
"posX": -34.314,
"posY": 2.001,
"posZ": -85.687,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "ec74df",
"Name": "Custom_Model",
"Transform": {
"posX": -19.774,
"posY": 1.916,
"posZ": -106.215,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Aespa Investigators",
"Description": "Mint Tea Fan",
"GMNotes": "fancreations/investigators_aespa.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/1862816781492027399/65707471C1DAF2E107F9ACDD28B5D65FDABBCE79/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"1696fd\":{\"lock\":false,\"pos\":{\"x\":-19.3,\"y\":1.3168,\"z\":-53.4358},\"rot\":{\"x\":0.0208,\"y\":269.9742,\"z\":0.0168}},\"19cce5\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3064,\"z\":-84.8185},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"3635a2\":{\"lock\":false,\"pos\":{\"x\":-22.6169,\"y\":1.3133,\"z\":-61.2414},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"3db376\":{\"lock\":false,\"pos\":{\"x\":-26.3,\"y\":1.3312,\"z\":-53.4368},\"rot\":{\"x\":0.0208,\"y\":269.9723,\"z\":0.0168}},\"6a6f2c\":{\"lock\":false,\"pos\":{\"x\":-19.2959,\"y\":1.3122,\"z\":-69.0607},\"rot\":{\"x\":0.0208,\"y\":269.9791,\"z\":0.0168}},\"8ecf25\":{\"lock\":false,\"pos\":{\"x\":-19.3001,\"y\":1.3145,\"z\":-61.2332},\"rot\":{\"x\":0.0208,\"y\":269.9789,\"z\":0.0168}},\"ab694b\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3243,\"z\":-76.9456},\"rot\":{\"x\":0.0208,\"y\":269.9892,\"z\":0.0168}},\"b0e5f7\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.3268,\"z\":-84.818},\"rot\":{\"x\":0.0208,\"y\":269.9915,\"z\":0.0168}},\"b1e673\":{\"lock\":false,\"pos\":{\"x\":-19.2936,\"y\":1.3099,\"z\":-76.9415},\"rot\":{\"x\":0.0208,\"y\":269.9791,\"z\":0.0168}},\"b5eb52\":{\"lock\":false,\"pos\":{\"x\":-22.6139,\"y\":1.3156,\"z\":-53.4381},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"b86f9a\":{\"lock\":false,\"pos\":{\"x\":-26.2996,\"y\":1.3268,\"z\":-84.818},\"rot\":{\"x\":0.0208,\"y\":269.9919,\"z\":0.0168}},\"c8a9be\":{\"lock\":false,\"pos\":{\"x\":-19.2998,\"y\":1.3076,\"z\":-84.8182},\"rot\":{\"x\":0.0208,\"y\":269.979,\"z\":0.0168}},\"e27b65\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.3087,\"z\":-76.946},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168}},\"f32428\":{\"lock\":false,\"pos\":{\"x\":-22.6157,\"y\":1.311,\"z\":-69.0756},\"rot\":{\"x\":0.0208,\"y\":269.9991,\"z\":0.0168}},\"f971bf\":{\"lock\":false,\"pos\":{\"x\":-26.3002,\"y\":1.3314,\"z\":-69.0606},\"rot\":{\"x\":0.0208,\"y\":269.9661,\"z\":0.0168}},\"fcb70f\":{\"lock\":false,\"pos\":{\"x\":-26.3001,\"y\":1.3674,\"z\":-61.241},\"rot\":{\"x\":0.0208,\"y\":269.9671,\"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.488,
"posY": -1.229,
"posZ": -25.922,
"rotX": 0.0,
"rotY": 320.0,
"rotZ": 0.0,
"scaleX": 0.45,
"scaleY": 0.45,
"scaleZ": 0.45
},
"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.293,
"posY": 9.347,
"posZ": -28.055,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor + 2\n objPos.z = objPos.z * globalScaleFactor * 0.9\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=500, width=500,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\n font_size=130, color={0,0,0}, font_color={1,1,1}\n })\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend",
"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.252,
"posY": 1.482,
"posZ": 11.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.928,
"posY": 1.744,
"posZ": 5.757,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.213,
"posY": 1.475,
"posZ": 9.519,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.353,
"posY": 1.547,
"posZ": 8.894,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.464,
"posY": 1.541,
"posZ": 7.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.916,
"posY": 1.798,
"posZ": 6.103,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.578,
"posY": 1.475,
"posZ": 9.962,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.28,
"posY": 1.475,
"posZ": 8.46,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.432,
"posY": 1.518,
"posZ": 9.537,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.353,
"posY": 1.547,
"posZ": 8.894,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.28,
"posY": 1.475,
"posZ": 8.46,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.253,
"posY": 1.475,
"posZ": 8.409,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.728,
"posY": 1.477,
"posZ": 9.232,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.056,
"posY": 1.507,
"posZ": 8.844,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.482,
"posY": 1.52,
"posZ": 8.858,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.353,
"posY": 1.52,
"posZ": 8.894,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.598,
"posY": 1.476,
"posZ": 8.837,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.288,
"posY": 1.476,
"posZ": 8.775,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.529,
"posY": 1.476,
"posZ": 9.557,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.449,
"posY": 1.539,
"posZ": 9.816,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.452,
"posY": 1.496,
"posZ": 7.44,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.226,
"posY": 1.52,
"posZ": 9.212,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.469,
"posY": 1.518,
"posZ": 8.818,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.128,
"posY": 1.518,
"posZ": 8.668,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.253,
"posY": 1.475,
"posZ": 8.409,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.32,
"posY": 1.475,
"posZ": 8.789,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.638,
"posY": 1.519,
"posZ": 9.461,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.34,
"posY": 1.518,
"posZ": 9.344,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.682,
"posY": 1.516,
"posZ": 10.111,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.278,
"posY": 1.475,
"posZ": 9.291,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.15,
"posY": 1.491,
"posZ": -0.08,
"rotX": 0.0,
"rotY": 270.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.937,
"posY": 1.473,
"posZ": -0.144,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.232,
"posY": 1.514,
"posZ": 0.037,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.15,
"posY": 1.486,
"posZ": -16.08,
"rotX": 0.0,
"rotY": 270.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.945,
"posY": 1.468,
"posZ": -15.045,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.128,
"posY": 1.5,
"posZ": -14.77,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.27,
"posY": 1.483,
"posZ": 15.92,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.481,
"posZ": -0.08,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.725,
"posY": 1.616,
"posZ": 0.373,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.072,
"posY": 1.594,
"posZ": -4.166,
"rotX": 0.0,
"rotY": 183.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.095,
"posY": 1.636,
"posZ": -4.269,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.15,
"posY": 1.493,
"posZ": 7.92,
"rotX": 0.0,
"rotY": 270.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.785,
"posY": 1.475,
"posZ": 8.08,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.889,
"posY": 1.507,
"posZ": 8.303,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.85,
"posY": 1.484,
"posZ": 7.92,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.25,
"posY": 1.484,
"posZ": 19.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.27,
"posY": 1.49,
"posZ": 28.777,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.676,
"posY": 1.628,
"posZ": -0.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.479,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.12,
"posY": 1.614,
"posZ": -15.28,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.676,
"posY": 1.613,
"posZ": -3.83,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.996,
"posY": 1.656,
"posZ": -0.18,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.214,
"posY": 1.487,
"posZ": 15.304,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.403,
"posY": 1.559,
"posZ": 15.6,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.975,
"posY": 1.507,
"posZ": 16.736,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 359.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.079,
"posY": 1.486,
"posZ": 13.112,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.032,
"posY": 1.546,
"posZ": 14.179,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 2.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.185,
"posY": 1.625,
"posZ": 14.396,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.707,
"posY": 1.618,
"posZ": 14.15,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.224,
"posY": 1.639,
"posZ": 7.57,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.273,
"posY": 1.606,
"posZ": -11.578,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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": {
"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": ""
},
"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": ""
}
}
},
{
"GUID": "61c4c5",
"Name": "Card",
"Transform": {
"posX": 12.251,
"posY": 1.472,
"posZ": -20.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.082,
"posY": 1.608,
"posZ": -3.587,
"rotX": 0.0,
"rotY": 135.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.277,
"posY": 1.48,
"posZ": 7.92,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.478,
"posY": 1.629,
"posZ": 3.856,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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": {
"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": ""
},
"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": ""
}
}
},
{
"GUID": "6ba06e",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.783,
"posY": 1.619,
"posZ": 0.118,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.676,
"posY": 1.611,
"posZ": -11.51,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.85,
"posY": 1.477,
"posZ": -16.08,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.773,
"posY": 1.646,
"posZ": -0.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.224,
"posY": 1.635,
"posZ": -7.7,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.773,
"posY": 1.634,
"posZ": 3.86,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.275,
"posY": 1.473,
"posZ": -16.08,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.85,
"posY": 1.479,
"posZ": -8.08,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.25,
"posY": 1.474,
"posZ": -12.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.773,
"posY": 1.649,
"posZ": 7.57,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.15,
"posY": 1.496,
"posZ": 15.92,
"rotX": 0.0,
"rotY": 270.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.114,
"posY": 1.476,
"posZ": 12.399,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.156,
"posY": 1.508,
"posZ": 12.358,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.274,
"posY": 1.476,
"posZ": -8.08,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.477,
"posZ": -4.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.949,
"posY": 1.618,
"posZ": -3.791,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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": {
"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": ""
},
"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": ""
}
}
},
{
"GUID": "98de77",
"Name": "Card",
"Transform": {
"posX": -23.677,
"posY": 1.624,
"posZ": -15.28,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.688,
"posY": 1.614,
"posZ": -5.049,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.074,
"posY": 1.591,
"posZ": -4.737,
"rotX": 0.0,
"rotY": 179.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.057,
"posY": 1.622,
"posZ": -4.862,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.24,
"posY": 1.605,
"posZ": -15.647,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.224,
"posY": 1.625,
"posZ": 3.86,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.696,
"posY": 1.558,
"posZ": 14.279,
"rotX": 0.0,
"rotY": 225.0,
"rotZ": 0.0,
"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.02149,
"g": 0.00101,
"b": 0.02149
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.697,
"posY": 3.663,
"posZ": 14.279,
"rotX": 0.0,
"rotY": 225.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.274,
"posY": 1.478,
"posZ": -0.08,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.456,
"posY": 1.608,
"posZ": -7.749,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.046,
"posY": 1.616,
"posZ": -11.531,
"rotX": 0.0,
"rotY": 135.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.662,
"posY": 1.616,
"posZ": -7.416,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.224,
"posY": 1.622,
"posZ": -3.83,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.12,
"posY": 1.617,
"posZ": -7.7,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.469,
"posY": 1.63,
"posZ": 7.583,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.811,
"posY": 1.62,
"posZ": 3.993,
"rotX": 0.0,
"rotY": 135.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.415,
"posY": 1.627,
"posZ": -4.031,
"rotX": 0.0,
"rotY": 135.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.956,
"posY": 1.598,
"posZ": -10.441,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.677,
"posY": 1.626,
"posZ": -7.7,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.224,
"posY": 1.637,
"posZ": -0.03,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.85,
"posY": 1.486,
"posZ": 15.92,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.445,
"posY": 1.628,
"posZ": 0.081,
"rotX": 0.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.15,
"posY": 1.489,
"posZ": -8.08,
"rotX": 0.0,
"rotY": 270.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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.858,
"posY": 1.471,
"posZ": -7.926,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.771,
"posY": 1.502,
"posZ": -7.662,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.12,
"posY": 1.602,
"posZ": -11.51,
"rotX": 0.0,
"rotY": 180.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": 0.60453,
"g": 0.60453,
"b": 0.60453
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"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.676,
"posY": 1.582,
"posZ": -14.535,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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'\n\nfunction onLoad()\n Global.call('createSetupButtons', {object=self, key=name})\nend\n\nfunction easyClick()\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\nend\n\nfunction normalClick()\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\nend\n\nfunction hardClick()\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\nend\n\nfunction expertClick()\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\nend",
"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.89497,
"posY": 1.49999654,
"posZ": 53.26698,
"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.964,
"posY": 1.468,
"posZ": 28.475,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.926,
"posY": 1.544,
"posZ": 4.545,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.928,
"posY": 1.539,
"posZ": -27.729,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.738,
"posY": 1.481,
"posZ": -28.511,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.001,
"posY": 1.43,
"posZ": -29.442,
"rotX": 0.0,
"rotY": 285.0,
"rotZ": 0.0,
"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": 1.0,
"g": 0.99216,
"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": "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.431,
"posY": 2.216,
"posZ": -71.83,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.018,
"posY": 2.221,
"posZ": -70.934,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.398,
"posY": 2.221,
"posZ": -67.58,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.639,
"posY": 4.081,
"posZ": -29.817,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.194,
"posY": 1.621,
"posZ": -16.596,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.87451,
"g": 0.87451,
"b": 0.87451
},
"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": "-- 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(\"chaosbag/ChaosBagStatTracker\", function(require, _LOADED, __bundle_register, __bundle_modules)\n-- button calls respective function in \"Global\"\nfunction onLoad()\n self.createButton({\n click_function = \"handleStatTrackerClick\",\n tooltip = \"Left-Click: Print stats\\nRight-Click: Reset stats\",\n height = 1250,\n width = 1250,\n color = { 0, 0, 0, 0 }\n })\nend\nend)\n__bundle_register(\"__root\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"chaosbag/ChaosBagStatTracker\")\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "[true,0]",
"XmlUI": ""
},
{
"GUID": "afa06b",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 2.842,
"posY": 1.644,
"posZ": -11.239,
"rotX": 0.0,
"rotY": 224.999985,
"rotZ": 0.0,
"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.465,
"posY": 1.703,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.703,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.694,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.706,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.709,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.703,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.688,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.465,
"posY": 1.697,
"posZ": -26.93,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.934,
"posY": 1.814,
"posZ": 4.076,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.934,
"posY": 1.814,
"posZ": 4.076,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.37456,
"g": 0.32859,
"b": 0.04894
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.053,
"posY": 1.642,
"posZ": -12.449,
"rotX": 0.0,
"rotY": 224.999985,
"rotZ": 0.0,
"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": -46.206,
"posY": 1.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.233,
"posY": 1.607,
"posZ": -21.577,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.233,
"posY": 1.607,
"posZ": -21.577,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.233,
"posY": 1.607,
"posZ": -21.577,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.493,
"posY": 1.791,
"posZ": -3.886,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.789,
"posZ": -3.483,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27072,
"g": 0.00387,
"b": 0.44425
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"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.86800337,
"posY": 1.58300054,
"posZ": -16.3940086,
"rotX": 1.98084285E-06,
"rotY": 90.0000153,
"rotZ": 1.2100686E-06,
"scaleX": 0.75,
"scaleY": 1.0,
"scaleZ": 0.75
},
"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": "-- 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(\"util/TokenRemover\")\nend)\n__bundle_register(\"util/TokenRemover\", function(require, _LOADED, __bundle_register, __bundle_modules)\n---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-02-02 9:41 a.m.\n---\n\nlocal zone = nil\n\n-- Forward Declaration\n---@param is_enabled boolean\nlocal setMenu = function(is_enabled) end\n\nlocal function enable()\n if self.held_by_color~=nil then return end\n local position = self:getPosition()\n local rotation = self:getRotation()\n local scale = self:getScale()\n\n zone = spawnObject {\n type = \"ScriptingTrigger\",\n position = Vector(position.x, position.y+25+(bit32.rshift(scale.y, 1))+0.41, position.z),\n rotation = rotation,\n scale = Vector(scale.x*2, 50, scale.z*2),\n sound = true,\n snap_to_grid = true\n }\n\n setMenu(false)\nend\n\nlocal function disable()\n if zone~=nil then zone:destruct() end\n setMenu(true)\nend\n\n---@param is_enabled boolean\nsetMenu = function(is_enabled)\n self:clearContextMenu()\n if is_enabled then\n self:addContextMenuItem(\"Enable\", enable, false)\n else\n self:addContextMenuItem(\"Disable\", disable, false)\n end\nend\n\nfunction onLoad(save_state)\n if save_state==\"\" then return end\n local data = JSON.decode(save_state)\n zone = getObjectFromGUID(data.zone)\n setMenu(zone==nil)\nend\n\nfunction onSave()\n return JSON.encode {\n zone = zone and zone:getGUID() or nil\n }\nend\n\n---@param entering TTSObject\n---@param object TTSObject\nfunction onObjectEnterScriptingZone(entering , object)\n if zone~=entering then return end\n if object==self then return end\n if object.type==\"Deck\" or object.type==\"Card\" then return end\n\n object:destruct()\nend\n\n---@param color string\nfunction onPickUp(color)\n disable()\nend\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "[]",
"XmlUI": ""
},
{
"GUID": "36b4ee",
"Name": "Checker_white",
"Transform": {
"posX": 77.159,
"posY": 1.297,
"posZ": 6.952,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 0.25,
"scaleY": 0.25,
"scaleZ": 0.25
},
"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": "-- 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(\"util/TokenSpawner\")\nend)\n__bundle_register(\"util/TokenSpawner\", function(require, _LOADED, __bundle_register, __bundle_modules)\n---\n--- Generated by EmmyLua(https://github.com/EmmyLua)\n--- Created by Whimsical.\n--- DateTime: 2021-01-14 1:10 a.m.\n---\nlocal TILE_TYPE_CIRCLE = 2\n\nlocal HEIGHT_ADJUSTMENT = 1.0\n\nlocal VALID_INDEX = {false, false, false, true, true, true, true, true, true}\n\nlocal INDEX_DAMAGE = 4\nlocal INDEX_PATH = 5\nlocal INDEX_HORROR = 6\nlocal INDEX_CLUE = 8\nlocal INDEX_DOOM = 7\nlocal INDEX_RESOURCE = 9\n\nlocal TOKEN_CLUE = \"http://cloud-3.steamusercontent.com/ugc/1758068501357164917/1D06F1DC4D6888B6F57124BD2AFE20D0B0DA15A8/\"\nlocal TOKEN_DOOM = \"https://i.imgur.com/EoL7yaZ.png\"\nlocal TOKEN_RESOURCE = \"http://cloud-3.steamusercontent.com/ugc/1758068501357192910/11DDDC7EF621320962FDCF3AE3211D5EDC3D1573/\"\n\nlocal CLOOM_SCALE = Vector(0.25, 1, 0.25)\nlocal RESOURCE_SCALE = Vector(0.17, 0.17, 0.17)\nlocal PATH_SCALE = Vector(1,1,1)\n\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\\\":\\\"\\\"}}}\"\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\\\":\\\"\\\"}}}\"\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\\\": \\\"\\\"}}}\"\n\nlocal OBJECT_JSON = {}\nOBJECT_JSON[INDEX_DAMAGE] = DAMAGE_JSON\nOBJECT_JSON[INDEX_HORROR] = HORROR_JSON\nOBJECT_JSON[INDEX_PATH] = PATH_JSON\n\n\n---@param index number\n---@param player_color string\nfunction onScriptingButtonDown(index, player_color)\n if not VALID_INDEX[index] then return end\n local isResource = index==INDEX_RESOURCE\n ---@type Player\n local player = Player[player_color]\n local rotation = player:getPointerRotation()\n local position = player:getPointerPosition()\n position.y = position.y + HEIGHT_ADJUSTMENT\n\n ---@type SpawnObjectParams\n local parameters = {\n snap_to_grid = false,\n position = position,\n rotation = Vector(0, rotation, index==INDEX_DOOM and 180 or 0),\n scale = isResource and RESOURCE_SCALE or (index==INDEX_PATH and PATH_SCALE or CLOOM_SCALE),\n type = isResource and \"Custom_Token\" or \"Custom_Tile\",\n sound = false,\n ---@param thing TTSObject\n callback_function = function (thing)\n thing.use_snap_points = false\n end\n }\n\n if index<=INDEX_HORROR then\n ---@type SpawnObjectParamsJSON\n parameters = parameters\n parameters.json = OBJECT_JSON[index]\n spawnObjectJSON(parameters)\n else\n local object = spawnObject(parameters)\n if index==INDEX_RESOURCE then makeResource(object) else makeCloom(object) end\n end\nend\n\n---@param object TTSObject\nfunction makeCloom(object)\n object:setCustomObject {\n type = TILE_TYPE_CIRCLE,\n image = TOKEN_CLUE,\n image_bottom = TOKEN_DOOM,\n stackable = true,\n thickness = 0.1\n }\nend\n\n---@param object TTSObject\nfunction makeResource(object)\n object:setCustomObject {\n image = TOKEN_RESOURCE,\n thickness = 0.3,\n merge_distance = 5,\n stackable = true\n }\nend\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66e97c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 34.21,
"posY": 1.86649907,
"posZ": 0.357001,
"rotX": 8.346713E-07,
"rotY": 270.0,
"rotZ": 3.3041988E-07,
"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": 1.0,
"g": 0.9921699,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.548,
"posY": 2.275,
"posZ": -36.314,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.499,
"posY": 3.612,
"posZ": -39.144,
"rotX": 357.0,
"rotY": 270.0,
"rotZ": 185.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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "63bde8",
"Name": "Card",
"Transform": {
"posX": -5.625,
"posY": 1.171,
"posZ": 0.319,
"rotX": 0.0,
"rotY": 180.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "0e05f2",
"Name": "Card",
"Transform": {
"posX": -0.326,
"posY": 1.032,
"posZ": -3.647,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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.481,
"posY": 1.176,
"posZ": -3.573,
"rotX": 0.0,
"rotY": 0.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": 0.71324,
"g": 0.71324,
"b": 0.71324
},
"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.175,
"posY": 3.594,
"posZ": -38.818,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.368,
"posY": 3.614,
"posZ": -31.021,
"rotX": 0.0,
"rotY": 270.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 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": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "9e01c2",
"Name": "Card",
"Transform": {
"posX": 7.354,
"posY": 1.152,
"posZ": 2.884,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 1.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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": "5249d8",
"Name": "Card",
"Transform": {
"posX": 7.158,
"posY": 1.231,
"posZ": 2.808,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.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.71324,
"g": 0.71324,
"b": 0.71324
},
"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.5,
"posY": 3.57,
"posZ": -31.298,
"rotX": 336.0,
"rotY": 87.0,
"rotZ": 7.0,
"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.09,
"posY": 2.507,
"posZ": 14.301,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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": 27.717,
"posY": 2.255,
"posZ": 12.42,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.358,
"posY": 6.299,
"posZ": -85.712,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.013,
"posY": 1.624,
"posZ": 67.684,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.144,
"posY": 1.669,
"posZ": 67.991,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 357.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.243,
"posY": 1.625,
"posZ": 67.29,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.225,
"posY": 1.624,
"posZ": 66.498,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.008,
"posY": 1.615,
"posZ": 66.398,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.088,
"posY": 1.624,
"posZ": 66.553,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.37,
"posY": 1.625,
"posZ": 65.415,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.291,
"posY": 1.625,
"posZ": 65.329,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.526,
"posY": 1.625,
"posZ": 65.906,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.063,
"posY": 1.626,
"posZ": 67.736,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.843,
"posY": 1.622,
"posZ": 67.306,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.669,
"posY": 3.37,
"posZ": -40.855,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.756,
"posY": 1.625,
"posZ": 64.388,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.954,
"posY": 1.625,
"posZ": 65.45,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.721,
"posY": 1.625,
"posZ": 66.962,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.332,
"posY": 1.625,
"posZ": 65.717,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.661,
"posY": 1.626,
"posZ": 67.684,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.458,
"posY": 1.624,
"posZ": 64.612,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.336,
"posY": 1.625,
"posZ": 65.413,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.309,
"posY": 1.625,
"posZ": 64.664,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.113,
"posY": 3.183,
"posZ": -58.666,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.844,
"posY": 1.624,
"posZ": 65.409,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.226,
"posY": 1.625,
"posZ": 66.493,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.268,
"posY": 1.626,
"posZ": 66.131,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.697,
"posY": 1.623,
"posZ": 66.348,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.565,
"posY": 2.713,
"posZ": -13.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 357.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.232,
"posY": 1.658,
"posZ": 64.298,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.932,
"posY": 1.624,
"posZ": 64.798,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.602,
"posY": 1.679,
"posZ": 64.245,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.964,
"posY": 1.624,
"posZ": 64.592,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.301,
"posY": 1.625,
"posZ": 66.344,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.624,
"posY": 1.623,
"posZ": 65.302,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.762,
"posY": 3.398,
"posZ": -68.94,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.297,
"posY": 1.808,
"posZ": 7.547,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.09,
"posY": 2.259,
"posZ": 14.5,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.939,
"posY": 1.614,
"posZ": 76.407,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.099,
"posY": 1.625,
"posZ": 67.407,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.015,
"posY": 1.627,
"posZ": 68.426,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.739,
"posY": 1.626,
"posZ": 67.217,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.766,
"posY": 1.626,
"posZ": 70.116,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.832,
"posY": 1.627,
"posZ": 67.762,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.515,
"posY": 1.626,
"posZ": 67.753,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.647,
"posY": 1.626,
"posZ": 69.454,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.64,
"posY": 1.625,
"posZ": 66.443,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "79b36d",
"Name": "Custom_Model",
"Transform": {
"posX": -23.947,
"posY": 2.361,
"posZ": -59.241,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Machining A Mystery",
"Description": "",
"GMNotes": "fancreations/campaign_machining_a_mystery.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1860561550045252585/5B883A570DB12EF90E66C9AC83D48B64A397F27D/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"00bd86\":{\"lock\":false,\"pos\":{\"x\":5.6543,\"y\":1.232,\"z\":50.7759},\"rot\":{\"x\":0.0208,\"y\":270.012,\"z\":0.0168}},\"13f2cf\":{\"lock\":false,\"pos\":{\"x\":4.3706,\"y\":1.6287,\"z\":11.8032},\"rot\":{\"x\":359.9197,\"y\":269.996,\"z\":0.0168}},\"177b23\":{\"lock\":false,\"pos\":{\"x\":12.1228,\"y\":1.4714,\"z\":23.2312},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"19068f\":{\"lock\":false,\"pos\":{\"x\":0.8939,\"y\":1.2629,\"z\":53.7457},\"rot\":{\"x\":0.0281,\"y\":270.0175,\"z\":0.0168}},\"2121c5\":{\"lock\":false,\"pos\":{\"x\":13.3962,\"y\":1.2686,\"z\":52.9511},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"24f032\":{\"lock\":false,\"pos\":{\"x\":-6.3722,\"y\":1.2573,\"z\":49.7998},\"rot\":{\"x\":0.0208,\"y\":270.008,\"z\":0.0168}},\"341647\":{\"lock\":false,\"pos\":{\"x\":0.0946,\"y\":1.2608,\"z\":53.7843},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168}},\"4647f5\":{\"lock\":false,\"pos\":{\"x\":11.7039,\"y\":1.4553,\"z\":-33.7546},\"rot\":{\"x\":359.9201,\"y\":270.0009,\"z\":0.0169}},\"4a29c2\":{\"lock\":false,\"pos\":{\"x\":12.2501,\"y\":1.4609,\"z\":-12.0137},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"503fc5\":{\"lock\":false,\"pos\":{\"x\":12.2519,\"y\":1.468,\"z\":11.9864},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"5146f4\":{\"lock\":false,\"pos\":{\"x\":-1.0265,\"y\":1.26,\"z\":52.3064},\"rot\":{\"x\":0.0208,\"y\":269.9875,\"z\":0.0168}},\"5ba390\":{\"lock\":false,\"pos\":{\"x\":0.1593,\"y\":1.2634,\"z\":56.6363},\"rot\":{\"x\":0.0281,\"y\":270.001,\"z\":0.0168}},\"5ccd13\":{\"lock\":false,\"pos\":{\"x\":-9.2356,\"y\":1.6315,\"z\":-10.45},\"rot\":{\"x\":359.9207,\"y\":269.9716,\"z\":0.0174}},\"621194\":{\"lock\":false,\"pos\":{\"x\":-2.6347,\"y\":1.2596,\"z\":53.1414},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"6a1f99\":{\"lock\":false,\"pos\":{\"x\":11.8347,\"y\":1.4582,\"z\":-23.1062},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"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}},\"7bda17\":{\"lock\":false,\"pos\":{\"x\":12.3581,\"y\":1.4744,\"z\":34.235},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"7c3cdc\":{\"lock\":false,\"pos\":{\"x\":11.8848,\"y\":1.2769,\"z\":-10.2113},\"rot\":{\"x\":0.08,\"y\":89.9995,\"z\":359.9831}},\"931909\":{\"lock\":false,\"pos\":{\"x\":-2.956,\"y\":1.2592,\"z\":52.1944},\"rot\":{\"x\":0.0208,\"y\":270.0009,\"z\":0.0168}},\"a3da91\":{\"lock\":false,\"pos\":{\"x\":-0.9527,\"y\":1.2611,\"z\":56.0573},\"rot\":{\"x\":0.0208,\"y\":270.0182,\"z\":0.0168}},\"a70df2\":{\"lock\":false,\"pos\":{\"x\":-6.2862,\"y\":1.2574,\"z\":50.0407},\"rot\":{\"x\":0.0208,\"y\":269.9756,\"z\":0.0168}},\"a7e34c\":{\"lock\":false,\"pos\":{\"x\":-2.9898,\"y\":1.2592,\"z\":52.1423},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168}},\"b2077d\":{\"lock\":false,\"pos\":{\"x\":-0.9299,\"y\":1.3932,\"z\":-15.3285},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"c0046a\":{\"lock\":false,\"pos\":{\"x\":11.9814,\"y\":1.4648,\"z\":-0.1445},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"e54f2a\":{\"lock\":false,\"pos\":{\"x\":12.1996,\"y\":1.2807,\"z\":3.856},\"rot\":{\"x\":0.0799,\"y\":89.9951,\"z\":359.9831}},\"e7f6e5\":{\"lock\":false,\"pos\":{\"x\":-3.2102,\"y\":1.2592,\"z\":52.2735},\"rot\":{\"x\":0.0208,\"y\":270.0028,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-5.0775,\"y\":1.5802,\"z\":-28.4084},\"rot\":{\"x\":359.9201,\"y\":269.9929,\"z\":0.0169}},\"eeb179\":{\"lock\":false,\"pos\":{\"x\":-6.1171,\"y\":1.2613,\"z\":63.1315},\"rot\":{\"x\":0.0208,\"y\":270,\"z\":0.0168}},\"f57a86\":{\"lock\":false,\"pos\":{\"x\":-3.2731,\"y\":1.2596,\"z\":54.0476},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"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.639,
"posY": 1.626,
"posZ": 68.545,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.368,
"posY": 1.626,
"posZ": 68.075,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.323,
"posY": 1.626,
"posZ": 68.341,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "b46db2",
"Name": "Custom_Model",
"Transform": {
"posX": 17.141,
"posY": 3.386,
"posZ": -31.21,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Jumanji",
"Description": "",
"GMNotes": "fancreations/campaign_jumanji.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1847049778276522891/B0F1D72796E5A43963B6EFA6B7FD870A89B139AF/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "",
"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.02,
"posY": 1.62,
"posZ": 70.208,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.851,
"posY": 1.626,
"posZ": 68.831,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.059,
"posY": 4.289,
"posZ": 4.033,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.96,
"scaleY": 0.27,
"scaleZ": 0.96
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f0680",
"Name": "Custom_Model",
"Transform": {
"posX": -9.202,
"posY": 1.629,
"posZ": 68.859,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.65,
"scaleY": 0.09,
"scaleZ": 0.65
},
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,7}, rotation={0,0,0}, height=850, width=3300,\n font_size=700, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.297,
"posY": 4.151,
"posZ": -6.402,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 358.0,
"scaleX": 1.0,
"scaleY": 0.14,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\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.439,
"posY": 1.626,
"posZ": 68.396,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.253,
"posY": 1.626,
"posZ": 69.268,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.927,
"posY": 2.295,
"posZ": -84.235,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.39199,
"g": 0.39199,
"b": 0.39199
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.513,
"posY": 1.625,
"posZ": 67.901,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.139,
"posY": 1.625,
"posZ": 68.797,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": "4d305a",
"Name": "Custom_Model",
"Transform": {
"posX": 26.688,
"posY": 5.16,
"posZ": -36.151,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Celtic Rising",
"Description": "5 Scenario Custom Cycle",
"GMNotes": "fancreations/campaign_celtic_rising.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/1754685726010541421/DC8223A713D02261326877B51FC717A9BAA217B8/",
"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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"LuaScriptState": "{\"ml\":{\"055532\":{\"lock\":false,\"pos\":{\"x\":8.8257,\"y\":1.4645,\"z\":-15.8276},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"072acf\":{\"lock\":false,\"pos\":{\"x\":9.0112,\"y\":1.4698,\"z\":3.0492},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1da86b\":{\"lock\":false,\"pos\":{\"x\":8.8915,\"y\":1.4662,\"z\":-9.7687},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"40367b\":{\"lock\":false,\"pos\":{\"x\":-7.2477,\"y\":1.4833,\"z\":-28.3811},\"rot\":{\"x\":359.9201,\"y\":270.0154,\"z\":0.0169}},\"446d4c\":{\"lock\":false,\"pos\":{\"x\":8.9866,\"y\":1.4718,\"z\":9.4227},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"4786a5\":{\"lock\":false,\"pos\":{\"x\":9.0784,\"y\":1.4735,\"z\":15.6658},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"55bcca\":{\"lock\":false,\"pos\":{\"x\":9.0606,\"y\":1.4679,\"z\":-3.2898},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"92ee5a\":{\"lock\":false,\"pos\":{\"x\":0.1554,\"y\":1.6281,\"z\":-10.3087},\"rot\":{\"x\":359.9197,\"y\":270.0021,\"z\":0.0168}},\"992bc4\":{\"lock\":false,\"pos\":{\"x\":-3.7366,\"y\":1.5823,\"z\":-15.0084},\"rot\":{\"x\":359.9197,\"y\":269.9815,\"z\":0.0169}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":8.366,\"y\":1.5615,\"z\":-28.4186},\"rot\":{\"x\":359.9201,\"y\":270.0162,\"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": "613b64",
"Name": "Custom_Model",
"Transform": {
"posX": -6.243,
"posY": 1.624,
"posZ": 68.903,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.155,
"posY": 3.407,
"posZ": -57.217,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 0.14,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,6}, rotation={0,0,0}, height=500, width=1600,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\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.544,
"posY": 1.627,
"posZ": 69.136,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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.308,
"posY": 1.825,
"posZ": -2.201,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "function onload(saved_data)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": 18.626,
"posY": 1.849,
"posZ": 24.429,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.40592,
"g": 0.40592,
"b": 0.40592
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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)\n createDownloadButton()\nend\n\n\n--Beginning Setup\n\n\n--Make Download button\nfunction createDownloadButton()\n self.createButton({\n label=\"Download\", click_function=\"buttonClick_download\", function_owner=self,\n position={0,0.1,2.2}, rotation={0,0,0}, height=240, width=800,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by download button,\nfunction buttonClick_download()\n local params = { url = self.getGMNotes(), replace = self.guid }\n Global.call('placeholder_download', params)\nend",
"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": 34.212,
"posY": 1.866499,
"posZ": 14.5000019,
"rotX": 7.588139E-07,
"rotY": 270.0,
"rotZ": 3.5995447E-07,
"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": 1.0,
"g": 0.9921699,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor + 4\n objPos.z = objPos.z * globalScaleFactor\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=1000, width=1000,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={0,1,-2}, rotation={0,0,0}, height=240, width=550,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-1.2,1,-2}, rotation={0,0,0}, height=240, width=570,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={-1.2,1,2}, rotation={0,0,0}, height=240, width=550,\n font_size=150, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={0,1,2}, rotation={0,0,0}, height=240, width=600,\n font_size=150, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={1.3,1,2}, rotation={0,0,0}, height=240, width=600,\n font_size=150, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={1.2,1,-2}, rotation={0,0,0}, height=240, width=500,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={0.7,1,2}, rotation={0,0,0}, height=280, width=600,\n font_size=200, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-0.7,1,2}, rotation={0,0,0}, height=280, width=650,\n font_size=200, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,1,-2}, rotation={0,0,0}, height=240, width=500,\n font_size=150, color={0,0,0}, font_color={1,1,1}\n })\n\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend",
"LuaScriptState": "{\"ml\":{\"77a5f9\":{\"lock\":false,\"pos\":{\"x\":24.4908065795898,\"y\":1.4814989566803,\"z\":8.42890167236328},\"rot\":{\"x\":-8.97855017001348E-08,\"y\":269.999816894531,\"z\":-3.17670227900635E-08}},\"9f6801\":{\"lock\":false,\"pos\":{\"x\":24.4866199493408,\"y\":1.4814989566803,\"z\":0.270817786455154},\"rot\":{\"x\":-7.39079695222244E-08,\"y\":270.000183105469,\"z\":-1.78800675598723E-07}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "77a5f9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 24.491,
"posY": 1.481,
"posZ": 8.429,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor + 4\n objPos.z = objPos.z * globalScaleFactor\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=1000, width=1000,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={-1.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={1.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend",
"LuaScriptState": "{\"ml\":{\"01d780\":{\"lock\":false,\"pos\":{\"x\":12.2485103607178,\"y\":1.46679246425629,\"z\":8.01027584075928},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168742407113314}},\"0dce91\":{\"lock\":false,\"pos\":{\"x\":12.2482643127441,\"y\":1.45501351356506,\"z\":-31.9916553497314},\"rot\":{\"x\":359.920135498047,\"y\":269.979187011719,\"z\":0.0169031396508217}},\"23dd51\":{\"lock\":false,\"pos\":{\"x\":12.2488107681274,\"y\":1.47385895252228,\"z\":32.0102844238281},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.016874298453331}},\"3c4f3c\":{\"lock\":false,\"pos\":{\"x\":12.2834386825562,\"y\":1.45732069015503,\"z\":-23.989408493042},\"rot\":{\"x\":359.920135498047,\"y\":269.98681640625,\"z\":0.0168921761214733}},\"4c173f\":{\"lock\":false,\"pos\":{\"x\":12.248104095459,\"y\":1.46443736553192,\"z\":0.0102720381692052},\"rot\":{\"x\":359.920135498047,\"y\":269.999786376953,\"z\":0.0168733689934015}},\"4dee5a\":{\"lock\":false,\"pos\":{\"x\":12.248607635498,\"y\":1.46208071708679,\"z\":-7.98972702026367},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168743915855885}},\"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.2486000061035,\"y\":1.47150349617004,\"z\":24.0102939605713},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.0168740972876549}},\"ee987d\":{\"lock\":false,\"pos\":{\"x\":12.250602722168,\"y\":1.46914494037628,\"z\":16.0102958679199},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.016874298453331}},\"fc7674\":{\"lock\":false,\"pos\":{\"x\":12.2490034103394,\"y\":1.45972454547882,\"z\":-15.9897546768188},\"rot\":{\"x\":359.920135498047,\"y\":270,\"z\":0.0168739017099142}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01d780",
"Name": "Custom_Model",
"Transform": {
"posX": 12.249,
"posY": 1.481,
"posZ": 8.01,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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": "0dce91",
"Name": "Custom_Model",
"Transform": {
"posX": 12.248,
"posY": 1.481,
"posZ": -31.992,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Fortune and Folly",
"Description": "",
"GMNotes": "scenarios/fortune_and_folly.json",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0,
"a": 0.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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/1874087305860070574/013FD9DB1E8E00F2BC0D40A339126B463774A65F/",
"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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "{\"ml\":{\"23735e\":{\"lock\":true,\"pos\":{\"x\":-51.939998626709,\"y\":1.67954432964325,\"z\":-26.1110057830811},\"rot\":{\"x\":0.032028179615736,\"y\":270.000061035156,\"z\":0.0554402023553848}},\"4421a3\":{\"lock\":false,\"pos\":{\"x\":12.2502326965332,\"y\":1.47267258167267,\"z\":27.98655128479},\"rot\":{\"x\":359.920135498047,\"y\":270.000061035156,\"z\":0.0168717335909605}},\"8985d8\":{\"lock\":true,\"pos\":{\"x\":-35.6000022888184,\"y\":1.59290218353271,\"z\":23.4358062744141},\"rot\":{\"x\":359.979919433594,\"y\":359.979797363281,\"z\":359.920166015625}},\"8eaf3c\":{\"lock\":true,\"pos\":{\"x\":-15.4431400299072,\"y\":1.69000005722046,\"z\":-23.6686058044434},\"rot\":{\"x\":1.02256807466006E-08,\"y\":180.000076293945,\"z\":1.28988361325355E-07}},\"a19650\":{\"lock\":false,\"pos\":{\"x\":12.2501316070557,\"y\":1.46560478210449,\"z\":3.9855797290802},\"rot\":{\"x\":359.920104980469,\"y\":270.013488769531,\"z\":0.0168553646653891}},\"b33e6c\":{\"lock\":false,\"pos\":{\"x\":-3.95597267150879,\"y\":1.59753942489624,\"z\":-10.4411630630493},\"rot\":{\"x\":359.919738769531,\"y\":269.999328613281,\"z\":0.0168381817638874}},\"bac13d\":{\"lock\":false,\"pos\":{\"x\":-3.76961278915405,\"y\":1.58239710330963,\"z\":-14.7854042053223},\"rot\":{\"x\":359.919738769531,\"y\":270.025085449219,\"z\":0.0168027933686972}},\"c0de56\":{\"lock\":false,\"pos\":{\"x\":12.2492799758911,\"y\":1.46325051784515,\"z\":-4.01365184783936},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168743841350079}},\"e1845d\":{\"lock\":true,\"pos\":{\"x\":-51.942253112793,\"y\":1.68278014659882,\"z\":5.92466831207275},\"rot\":{\"x\":359.920074462891,\"y\":270.000061035156,\"z\":0.0168632287532091}}}}",
"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.249,
"posY": 1.481,
"posZ": 32.01,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.283,
"posY": 1.481,
"posZ": -23.989,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.248,
"posY": 1.481,
"posZ": 0.01,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.249,
"posY": 1.481,
"posZ": -7.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.249,
"posY": 1.481,
"posZ": 24.01,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.251,
"posY": 1.481,
"posZ": 16.01,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.249,
"posY": 1.481,
"posZ": -15.99,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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": 24.487,
"posY": 1.481,
"posZ": 0.271,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- Version 2.5.2\n-- Fork of Memory Bag 2.0 by MrStump\n\nfunction updateSave()\n local data_to_save = {[\"ml\"]=memoryList}\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n local dummyIndex = howManyButtons\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 * 1/self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor + 4\n objPos.z = objPos.z * globalScaleFactor\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\n local color = {0.75,0.25,0.25,0.6}\n local colorMove = {0,0,1,0.6}\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function=funcName, function_owner=self,\n position=objPos, rotation=rot, height=1000, width=1000,\n color=color,\n })\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\n position={-1.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n\n self.createButton({\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\n position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n\n if move == false then\n self.createButton({\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\n position={1.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={0.25,1,0.25}\n })\n\n if fresh == false then\n self.createButton({\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\n position={1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={0.75,0.75,1}\n })\n self.createButton({\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\n position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,0.25,0.25}\n })\n end\n end\n\n self.createButton({\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\n position={-1.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\nend\n\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(index, obj, move)\n local colorMove = {0,0,1,0.6}\n local color = {0,1,0,0.6}\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({index=previousIndex, color=colorMove})\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({index=index, color=color})\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n lock=obj.getLock()\n }\n obj.highlightOn({0,1,0})\n else\n color = {0.75,0.25,0.25,0.6}\n if move == true then\n color = colorMove\n end\n self.editButton({index=index, color=color})\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", {1,1,1})\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\n end\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k,v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\n combineMemoryFromBagsWithin()\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\n self.clearButtons()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n end\n end\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n self.clearButtons()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", {1,1,1})\n updateSave()\nend\n\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\n position={1.35,1,6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\n position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n self.createButton({\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\n position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200,\n font_size=350, color={0,0,0}, font_color={1,1,1}\n })\n--- self.createButton({\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\n--- })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\n })\n item.setLock(entry.lock)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", {1,1,1})\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", {1,1,1})\nend\n\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x-p1.x)\n deltaPos.y = (p2.y-p1.y) + yOffset\n deltaPos.z = (p2.z-p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return {x=x, y=desiredPos.y, z=z}\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n\tlocal angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n\tlocal z = desiredPos.z * math.cos(angle)\n return {x=x, y=desiredPos.y, z=z}\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10^(dec or 0)\n return math.floor(num * mult + 0.5) / mult\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.25,
"posY": 1.466,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.25,
"posY": 1.459,
"posZ": -20.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": 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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.252,
"posY": 1.468,
"posZ": 11.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.25,
"posY": 1.461,
"posZ": -12.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.25,
"posY": 1.463,
"posZ": -4.014,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.27451
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- 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(\"core/DownloadBox\")\nend)\n__bundle_register(\"core/DownloadBox\", function(require, _LOADED, __bundle_register, __bundle_modules)\nfunction onLoad()\n self.createButton({\n label = \"Download\",\n click_function = \"buttonClick_download\",\n function_owner = self,\n position = { 0, 0.1, 2.2 },\n height = 240,\n width = 800,\n font_size = 150,\n color = { 0, 0, 0 },\n font_color = { 1, 1, 1 }\n })\nend\n\nfunction buttonClick_download()\n Global.call('placeholder_download', { url = self.getGMNotes(), replace = self.guid })\nend\nend)\nreturn __bundle_require(\"__root\")",
"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.182,
"posY": 1.38184047,
"posZ": 95.803,
"rotX": -1.98363921E-07,
"rotY": 270.0,
"rotZ": 180.0,
"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.25,
"posY": 1.739,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.718,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.71,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.702,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.689,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.686,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.676,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.662,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.665,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.641,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.64,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.636,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.612,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.617,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.608,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.583,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.573,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.571,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.554,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.544,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.51,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.25,
"posY": 1.479,
"posZ": 3.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.434,
"posY": 1.17173564,
"posZ": 95.758,
"rotX": -6.67010669E-09,
"rotY": 2.2011352E-07,
"rotZ": 2.06773308E-07,
"scaleX": 0.45,
"scaleY": 0.45,
"scaleZ": 0.45
},
"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.62745,
"g": 0.125479937,
"b": 0.94118
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "-- 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(\"playercards/ScriptedTarot\", function(require, _LOADED, __bundle_register, __bundle_modules)\nCARD_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\nend)\n__bundle_register(\"__root\", function(require, _LOADED, __bundle_register, __bundle_modules)\nrequire(\"playercards/ScriptedTarot\")\nend)\nreturn __bundle_require(\"__root\")",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0fd716",
"Name": "Card",
"Transform": {
"posX": -13.791,
"posY": 2.985,
"posZ": 65.421,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 178.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 2.557,
"posZ": 70.458,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 178.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 4.151,
"posZ": 52.297,
"rotX": 2.0,
"rotY": 0.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.113,
"posY": 3.339,
"posZ": 55.795,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 4.236,
"posZ": 51.289,
"rotX": 2.0,
"rotY": 0.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 2.644,
"posZ": 69.451,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 178.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 3.075,
"posZ": 64.414,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 178.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.974,
"posY": 3.339,
"posZ": 57.313,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 3.56,
"posZ": 59.35,
"rotX": 2.0,
"rotY": 0.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.791,
"posY": 3.898,
"posZ": 55.319,
"rotX": 2.0,
"rotY": 0.0,
"rotZ": 180.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.347,
"posY": 3.34,
"posZ": 54.461,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.347,
"posY": 3.34,
"posZ": 52.461,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.347,
"posY": 3.339,
"posZ": 48.461,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.347,
"posY": 3.585,
"posZ": 46.461,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.035,
"posY": 3.388,
"posZ": 45.852,
"rotX": 1.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.682,
"posY": 3.296,
"posZ": 41.773,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.653,
"posY": 3.328,
"posZ": 44.494,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 2.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.929,
"posY": 3.329,
"posZ": 44.63,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.956,
"posY": 3.209,
"posZ": 48.653,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 353.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.948,
"posY": 3.125,
"posZ": 50.184,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 358.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.192,
"posY": 3.156,
"posZ": 48.908,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 356.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.605,
"posY": 3.359,
"posZ": 46.71,
"rotX": 359.0,
"rotY": 270.0,
"rotZ": 1.0,
"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.71324,
"g": 0.71324,
"b": 0.71324
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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.37,
"posY": 1.47,
"posZ": -21.245,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.68,
"scaleY": 0.68,
"scaleZ": 0.68
},
"Nickname": "Fan-Made Accessories",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.99216,
"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": "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.215,
"posY": 5.651,
"posZ": -34.811,
"rotX": 4.0,
"rotY": 270.0,
"rotZ": 357.0,
"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\n-- made by: Chr1Z\n-- description: for easier managing of the chaos bag (adding / removing tokens)\ninformation = {\n version = \"1.4\",\n last_updated = \"12.11.2022\"\n}\n\nlocal TOKEN_URL = {\n ElderSign = \"https://i.imgur.com/nEmqjmj.png\",\n plusOne = \"https://i.imgur.com/uIx8jbY.png\",\n Zero = \"https://i.imgur.com/btEtVfd.png\",\n minusOne = \"https://i.imgur.com/w3XbrCC.png\",\n minusTwo = \"https://i.imgur.com/bfTg2hb.png\",\n minusThree = \"https://i.imgur.com/yfs8gHq.png\",\n minusFour = \"https://i.imgur.com/qrgGQRD.png\",\n minusFive = \"https://i.imgur.com/3Ym1IeG.png\",\n minusSix = \"https://i.imgur.com/c9qdSzS.png\",\n minusSeven = \"https://i.imgur.com/4WRD42n.png\",\n minusEight = \"https://i.imgur.com/9t3rPTQ.png\",\n Skull = \"https://i.imgur.com/stbBxtx.png\",\n Cultist = \"https://i.imgur.com/VzhJJaH.png\",\n Tablet = \"https://i.imgur.com/1plY463.png\",\n ElderThing = \"https://i.imgur.com/ttnspKt.png\",\n AutoFail = \"https://i.imgur.com/lns4fhz.png\",\n Frost = \"http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/\"\n}\n\nlocal TOKEN_NAMES = {\n -- first row\n \"plusOne\", \"Zero\", \"minusOne\", \"minusTwo\", \"minusThree\", \"minusFour\",\n -- second row\n \"minusFive\", \"minusSix\", \"minusSeven\", \"minusEight\", \"Frost\",\n -- third row\n \"ElderSign\", \"Skull\", \"Cultist\", \"Tablet\", \"ElderThing\", \"AutoFail\"\n}\n\nlocal BUTTON_TOOLTIP = {\n -- first row\n \"+1\", \"0\", \"-1\", \"-2\", \"-3\", \"-4\",\n -- second row\n \"-5\", \"-6\", \"-7\", \"-8\", \"Frost\",\n -- third row\n \"Elder Sign\", \"Skull\", \"Cultist\", \"Tablet\", \"Elder Thing\", \"Auto-fail\"\n}\n\nlocal tokenarranger = getObjectFromGUID(\"022907\")\nlocal z = { -0.778, 0, 0.75 }\nlocal BUTTON_POSITION = {\n -- first row\n { -1.90, 0, z[1] },\n { -1.14, 0, z[1] },\n { -0.38, 0, z[1] },\n { 0.38, 0, z[1] },\n { 1.14, 0, z[1] },\n { 1.90, 0, z[1] },\n -- second row\n { -1.90, 0, z[2] },\n { -1.14, 0, z[2] },\n { -0.38, 0, z[2] },\n { 0.38, 0, z[2] },\n { 1.90, 0, z[2] },\n -- third row\n { -1.90, 0, z[3] },\n { -1.14, 0, z[3] },\n { -0.38, 0, z[3] },\n { 0.38, 0, z[3] },\n { 1.14, 0, z[3] },\n { 1.90, 0, z[3] },\n}\n\n-- common button parameters\nlocal buttonParameters = {}\nbuttonParameters.function_owner = self\nbuttonParameters.color = { 0, 0, 0, 0 }\nbuttonParameters.width = 300\nbuttonParameters.height = 300\n\nfunction onLoad()\n -- create buttons for tokens\n for i = 1, #BUTTON_POSITION do\n buttonParameters.position = BUTTON_POSITION[i]\n buttonParameters.click_function = attachIndex(\"button_click\", i)\n buttonParameters.tooltip = BUTTON_TOOLTIP[i]\n self.createButton(buttonParameters)\n end\n\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", \"White\")\n printToAll(\"Chaos Bag Manager v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\n end)\nend\n\n-- get chaos bag from scripting zone and description\nfunction getChaosBag()\n local chaosbag = nil\n local chaosbag_zone = getObjectFromGUID(\"83ef06\")\n\n -- error handling: scripting zone not found\n if chaosbag_zone == nil then\n printToAll(\"Zone for chaos bag detection couldn't be found.\", \"Red\")\n return nil\n end\n\n for _, v in ipairs(chaosbag_zone.getObjects()) do\n if v.getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(v.getGUID())\n break\n end\n end\n\n -- error handling: chaos bag not found\n if chaosbag == nil then\n printToAll(\"Chaos bag couldn't be found.\", \"Red\")\n end\n return chaosbag\nend\n\n-- helper function to carry index\nfunction attachIndex(click_function, index)\n local fn_name = click_function .. index\n _G[fn_name] = function(obj, player_color, alt_click)\n _G[click_function](obj, player_color, alt_click, index)\n end\n return fn_name\nend\n\n-- click function for buttons\nfunction button_click(obj, player_color, alt_click, index)\n chaosbag = getChaosBag()\n\n -- error handling: chaos bag not found\n if chaosbag == nil then return end\n\n name = BUTTON_TOOLTIP[index]\n tokens = {}\n for _, v in ipairs(chaosbag.getObjects()) do\n if v.name == name then table.insert(tokens, v.guid) end\n end\n\n token = TOKEN_NAMES[index]\n if alt_click then\n -- error handling: no matching token found\n if #tokens == 0 then\n printToAll(\"No \" .. name .. \" tokens in the chaos bag.\", \"Yellow\")\n return\n end\n\n -- remove token\n chaosbag.takeObject({\n guid = tokens[1],\n position = self.getPosition(),\n smooth = false,\n callback_function = remove_callback\n })\n else\n -- spawn token (only 8 frost tokens allowed)\n if token == \"Frost\" and #tokens == 8 then\n printToAll(\"The maximum of 8 Frost tokens is already in the bag.\", \"Yellow\")\n return\n end\n\n local obj = spawnObject({\n type = 'Custom_Tile',\n position = chaosbag.getPosition() + Vector(0, 1, 0),\n rotation = { x = 0, y = 260, z = 0 },\n callback_function = spawn_callback\n })\n obj.setCustomObject({\n type = 2,\n image = TOKEN_URL[token],\n thickness = 0.1\n })\n end\n\n updateTokenArranger()\nend\n\nfunction remove_callback(obj)\n printToAll(\"Removing \" .. name .. \" token (in bag: \" .. #tokens - 1 .. \")\", \"White\")\n obj.destruct()\nend\n\nfunction spawn_callback(obj)\n obj.scale { 0.81, 1, 0.81 }\n obj.setName(name)\n printToAll(\"Adding \" .. name .. \" token (in bag: \" .. #tokens + 1 .. \")\", \"White\")\nend\n\nUPDATING = false\nfunction updateTokenArranger()\n if tokenarranger and not UPDATING then\n UPDATING = true\n Wait.time(function()\n UPDATING = false\n tokenarranger.call(\"layout\")\n end, 1.5)\n end\nend",
"LuaScriptState": "{\"Bless\":8,\"Curse\":0}",
"XmlUI": ""
},
{
"GUID": "022907",
"Name": "Custom_Token",
"Transform": {
"posX": 22.951,
"posY": 5.242,
"posZ": -30.295,
"rotX": 1.0,
"rotY": 270.0,
"rotZ": 0.0,
"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\n-- created by: Chr1Z\n-- original by: Whimsical\n-- description: displays the content of the chaos bag\ninformation = {\n version = \"1.7\",\n last_updated = \"13.11.2022\"\n}\n\n-- names of tokens in order\nlocal token_names = {\n \"Elder Sign\",\n \"Skull\",\n \"Cultist\",\n \"Tablet\",\n \"Elder Thing\",\n \"Auto-fail\",\n \"Bless\",\n \"Curse\",\n \"Frost\",\n \"\"\n}\n\n-- token modifiers for sorting (and order for same modifier)\n-- order starts at 2 because there is a \"+1\" token\nlocal token_precedence = {\n [\"Elder Sign\"] = { 100, 2 },\n [\"Skull\"] = { -1, 3 },\n [\"Cultist\"] = { -2, 4 },\n [\"Tablet\"] = { -3, 5 },\n [\"Elder Thing\"] = { -4, 6 },\n [\"Auto-fail\"] = { -100, 7 },\n [\"Bless\"] = { 101, 8 },\n [\"Curse\"] = { -101, 9 },\n [\"Frost\"] = { -99, 10 },\n [\"\"] = { 0, 11 }\n}\n\n-- common parameters\nlocal buttonParameters = {}\nbuttonParameters.function_owner = self\nbuttonParameters.label = \"\"\nbuttonParameters.tooltip = \"Add / Remove\"\nbuttonParameters.color = { 0, 0, 0, 0 }\nbuttonParameters.width = 325\nbuttonParameters.height = 325\n\nlocal inputParameters = {}\ninputParameters.function_owner = self\ninputParameters.font_size = 100\ninputParameters.width = 250\ninputParameters.height = inputParameters.font_size + 23\ninputParameters.alignment = 3\ninputParameters.validation = 2\ninputParameters.tab = 2\n\n-- tag for cloned tokens\nTO_DELETE_TAG = \"to_be_deleted\"\n\nupdating = false\n\nfunction onSave() return JSON.encode(token_precedence) end\n\nfunction onLoad(save_state)\n if save_state ~= nil then\n token_precedence = JSON.decode(save_state)\n end\n\n -- create UI\n local offset = 0.725\n local pos = { x = { -1.067, 0.377 }, z = -2.175 }\n\n -- button and inputs index 1-10\n for i = 1, 10 do\n if i < 6 then\n buttonParameters.position = { pos.x[1], 0, pos.z + i * offset }\n inputParameters.position = { pos.x[1] + offset, 0.1, pos.z + i * offset }\n else\n buttonParameters.position = { pos.x[2], 0, pos.z + (i - 5) * offset }\n inputParameters.position = { pos.x[2] + offset, 0.1, pos.z + (i - 5) * offset }\n end\n\n buttonParameters.click_function = attachIndex(\"tokenClick\", i)\n inputParameters.input_function = attachIndex2(\"tokenInput\", i)\n inputParameters.value = token_precedence[token_names[i]][1]\n\n self.createButton(buttonParameters)\n self.createInput(inputParameters)\n end\n\n -- index 11: \"Update / Hide\" button\n buttonParameters.label = \"Update / Hide\"\n buttonParameters.click_function = \"layout\"\n buttonParameters.tooltip = \"Left-Click: Update!\\nRight-Click: Hide Tokens!\"\n buttonParameters.position = { 0.725, 0.1, 2.025 }\n buttonParameters.color = { 1, 1, 1 }\n buttonParameters.width = 675\n buttonParameters.height = 175\n self.createButton(buttonParameters)\n\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", \"White\")\n printToAll(\"Token Arranger v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\n printToAll(\"original concept by Whimsical\", \"White\")\n end)\n\n -- send object reference to bless/curse manager\n Wait.time(function()\n getObjectFromGUID(\"5933fb\").setVar(\"tokenArranger\", self)\n end, 1)\nend\n\nfunction onDestroy()\n -- remove object reference from bless/curse manager\n getObjectFromGUID(\"5933fb\").setVar(\"tokenArranger\", nil)\nend\n\n-- helper functions to carry index\nfunction attachIndex(click_function, index)\n local fn_name = click_function .. index\n _G[fn_name] = function(obj, player_color, alt_click)\n _G[click_function](obj, player_color, alt_click, index)\n end\n return fn_name\nend\n\nfunction attachIndex2(input_function, index)\n local fn_name = input_function .. index\n _G[fn_name] = function(obj, player_color, input, selected)\n _G[input_function](obj, player_color, input, selected, index)\n end\n return fn_name\nend\n\n-- click_function for buttons on chaos tokens\nfunction tokenClick(obj, player_color, alt_click, index)\n if not updating then\n updating = true\n if alt_click then\n token_precedence[token_names[index]][1] = token_precedence[token_names[index]][1] - 1\n else\n token_precedence[token_names[index]][1] = token_precedence[token_names[index]][1] + 1\n end\n self.editInput({ index = index - 1, value = token_precedence[token_names[index]][1] })\n layout()\n end\nend\n\n-- input_function for input_boxes\nfunction tokenInput(obj, player_color, input, selected, index)\n if selected == false and not updating then\n updating = true\n local num = tonumber(input)\n if num ~= nil then\n token_precedence[token_names[index]][1] = num\n end\n layout()\n end\nend\n\n-- order function for data sorting\nfunction token_value_comparator(left, right)\n if left.value > right.value then return true\n elseif right.value > left.value then return false\n elseif left.order < right.order then return true\n elseif right.order < left.order then return false\n else return left.token.getGUID() > right.token.getGUID()\n end\nend\n\n-- get chaos bag from scripting zone and description\nfunction getChaosBag()\n local chaosbag = nil\n local chaosbag_zone = getObjectFromGUID(\"83ef06\")\n\n -- error handling: scripting zone not found\n if chaosbag_zone == nil then\n printToAll(\"Zone for chaos bag detection couldn't be found.\", \"Red\")\n return nil\n end\n\n for _, v in ipairs(chaosbag_zone.getObjects()) do\n if v.getDescription() == \"Chaos Bag\" then\n chaosbag = getObjectFromGUID(v.getGUID())\n break\n end\n end\n\n -- error handling: chaos bag not found\n if chaosbag == nil then\n printToAll(\"Chaos bag couldn't be found.\", \"Red\")\n end\n return chaosbag\nend\n\n-- main function (delete old tokens, clone chaos bag content, sort it and position it)\nfunction layout(_, _, isRightClick)\n -- delete previously pulled out tokens\n for _, token in ipairs(getObjectsWithTag(TO_DELETE_TAG)) do token.destruct() end\n\n -- stop here if right-clicked\n if isRightClick then return end\n\n local chaos_bag = getChaosBag()\n local chaos_bag_objects = chaos_bag.getObjects()\n\n -- take each token out and clone it\n for _, data in ipairs(chaos_bag_objects) do\n chaos_bag.takeObject {\n guid = data.guid,\n smooth = false,\n callback_function = function(tok)\n chaos_bag.putObject(tok.clone())\n tok.addTag(TO_DELETE_TAG)\n end\n }\n end\n\n -- wait until all tokens have finished spawning\n Wait.condition(function() do_position() end,\n function() return #chaos_bag_objects == #getObjectsWithTag(TO_DELETE_TAG) end)\nend\n\n-- position tokens sorted by value\nfunction do_position()\n local data = {}\n\n -- create table with tokens\n for i, token in ipairs(getObjectsWithTag(TO_DELETE_TAG)) do\n local name = token.getName() or \"\"\n local value = tonumber(name)\n local precedence = token_precedence[name]\n\n data[i] = {\n token = token,\n value = value or precedence[1]\n }\n\n if precedence ~= nil then\n data[i].order = precedence[2]\n else\n data[i].order = value\n end\n end\n\n -- sort table by value (symbols last if same value)\n table.sort(data, token_value_comparator)\n\n -- laying out the tokens\n local pos = self.getPosition() + Vector(3.55, -0.05, -3.95)\n local location = { x = pos.x, y = pos.y, z = pos.z }\n local current_value = data[1].value\n\n for _, item in ipairs(data) do\n if item.value ~= current_value then\n location.x = location.x - 1.75\n location.z = pos.z\n current_value = item.value\n end\n item.token.setPosition(location)\n item.token.setRotation(self.getRotation())\n location.z = location.z - 1.75\n end\n updating = false\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": "e87ea2",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 21.012,
"posY": 3.161,
"posZ": -26.838,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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": "-- CYOA Campaign Guides by Antimarkovnikov, scripted by Chr1Z\n-- Utility memory bag by Directsun\n-- Version 2.7.0\n-- Fork of Memory Bag 2.0 by MrStump\n\nCONFIG = {\n MEMORY_GROUP = {\n -- This determines how many frames to wait before actually placing objects onto the table when the \"Place\" button is clicked.\n -- This gives the other bags time to recall their objects.\n -- The delay ONLY occurs if other bags have objects out.\n FRAME_DELAY_BEFORE_PLACING_OBJECTS = 30,\n },\n}\n\n--[[ Memory Bag Groups ]] -------------------------------------------------------\n--[[\nUtility Memory Bags may be added to a named group, called a \"memory group\".\nYou can add a bag to a group through the bag's UI: \"Setup\" > \"Group Name\" (to the left of the bag).\nOnly one bag from a group may have it's contents placed on the table at a time.\nWhen \"Place\" is clicked on a bag, the other bags in it's memory group are recalled.\nBy default a memory bag is not in any group. It's memory group is \"nil\".\n--]]\n\nmemoryGroupName = { memoryBag = self }\nfunction memoryGroupName:get()\n return self._name\nend\n\nfunction memoryGroupName:set(newName)\n GlobalMemoryGroups:unregisterBagInGroup(self:get(), self.memoryBag.getGUID())\n GlobalMemoryGroups:registerBagInGroup(newName, self.memoryBag.getGUID())\n\n if newName == \"\" then\n self._name = nil\n else\n self._name = newName\n end\nend\n\n-- Click the \"Recall\" button on all other bags in my memory group.\nfunction recallOtherBagsInMyGroup()\n for _, bag in ipairs(getOtherBagsInMyGroup()) do\n bag.call('buttonClick_recall')\n end\nend\n\n-- Return \"true\" if another bag in my memory group has any objects out on the table.\nfunction anyOtherBagsInMyGroupArePlaced()\n for _, bag in ipairs(getOtherBagsInMyGroup()) do\n local state = bag.call('areAnyOfMyObjectsPlaced')\n if state then return true end\n end\n\n return false\nend\n\n-- Return \"true\" if at least one object from this memory bag is out on the table.\nfunction areAnyOfMyObjectsPlaced()\n for guid, _ in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then\n return true\n end\n end\n return false\nend\n\nfunction getOtherBagsInMyGroup()\n local bags = {}\n for bagGuid, _ in pairs(GlobalMemoryGroups:getGroup(memoryGroupName:get())) do\n if bagGuid ~= self.getGUID() then\n bag = getObjectFromGUID(bagGuid)\n -- \"bag\" is nill if it has been deleted since the last time onLoad() was called.\n if bag ~= nil then\n table.insert(bags, bag)\n end\n end\n end\n return bags\nend\n\n--[[\nThis object provides access to a variable stored on the \"Global script\".\nThe variable holds the names & guids of all memory bag groups.\nThe global variable is a table and holds data like this:\n{\n 'My First Group Name' = {\n '805ebd' = {},\n '35cc21' = {},\n 'fc8886' = {},\n },\n 'My Second Group Name' = {\n 'f50264' = {},\n '5f5f63' = {},\n },\n}\n--]]\nGlobalMemoryGroups = {\n NAME_OF_GLOBAL_VARIABLE = '_GlobalUtilityMemoryBagGroups',\n}\n\n-- Call me inside this script's \"onLoad()\" method!\nfunction GlobalMemoryGroups:onLoad(myGuid)\n -- Create and initialize the global variable if it doesn't already exist:\n if self:_getGroups() == nil then\n self:_setGroups({})\n end\nend\n\n-- Return the GUIDs of all bags in the \"groupName\". The return value is a dictionary that maps [GUID -> empty table].\nfunction GlobalMemoryGroups:getGroup(groupName)\n guids = self:_getGroups()[groupName] or {}\n return guids\nend\n\n-- Registers a bag in a memory group. Creates a new group if one doesn't exist.\nfunction GlobalMemoryGroups:registerBagInGroup(groupName, bagGuid)\n if groupName == nil or groupName == \"\" then\n return\n end\n\n self:_tryCreateNewGroup(groupName)\n local groups = self:_getGroups()\n groups[groupName][bagGuid] = {}\n self:_setGroups(groups)\nend\n\n-- Removes this bag from the memory group.\nfunction GlobalMemoryGroups:unregisterBagInGroup(groupName, bagGuid)\n local groups = self:_getGroups()\n local group = groups[groupName]\n if group ~= nil then\n group[bagGuid] = nil\n self:_setGroups(groups)\n end\nend\n\n-- Return the global variable, which is a table holding all memory group names & guids.\nfunction GlobalMemoryGroups:_getGroups()\n return Global.getTable(self.NAME_OF_GLOBAL_VARIABLE)\nend\n\n-- Override the global variable (i.e. the entire table).\nfunction GlobalMemoryGroups:_setGroups(newTable)\n Global.setTable(self.NAME_OF_GLOBAL_VARIABLE, newTable)\nend\n\n-- Add a new memory group named \"groupName\" to the global variable, if one doesn't already exist.\nfunction GlobalMemoryGroups:_tryCreateNewGroup(groupName)\n local groups = self:_getGroups()\n if groups[groupName] == nil then\n groups[groupName] = {}\n self:_setGroups(groups)\n end\nend\n\n-- This object controls the \"Group Name\" input text field that is part of the bag's ingame UI.\ngroupNameInput = {\n greyedOutText = \"Group Name\",\n widthPerCharacter = 100,\n padding = 4,\n memoryBag = self,\n}\nfunction groupNameInput:create(optionalStartingValue)\n local effectiveText = optionalStartingValue or self.greyedOutText\n local width = self:computeWidth(effectiveText)\n\n self.memoryBag.createInput({\n label = self.greyedOutText,\n value = optionalStartingValue or nil,\n alignment = 3, -- Center aligned\n input_function = \"groupNameInput_onCharacterTyped\", function_owner = self.memoryBag,\n position = { 2.1, 0.3, 0 }, rotation = { 0, 270, 0 }, width = width, height = 350,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 },\n })\nend\n\nfunction groupNameInput:computeWidth(text)\n return (string.len(text) + self.padding) * self.widthPerCharacter\nend\n\nfunction groupNameInput:updatedWidth(text)\n self.memoryBag.editInput({\n index = 0,\n width = self:computeWidth(text)\n })\nend\n\nfunction groupNameInput:onCharacterTyped(text, stillEditing)\n if stillEditing then\n self:updatedWidth(text)\n else\n if text == \"\" then\n self:updatedWidth(self.greyedOutText)\n end\n end\nend\n\nfunction groupNameInput_onCharacterTyped(memoryBag, playerColor, text, stillEditing)\n groupNameInput:onCharacterTyped(text, stillEditing)\nend\n\nfunction groupNameInput:setGroupNameToInputField()\n local inputFields = self.memoryBag.getInputs()\n if inputFields ~= nil then\n -- Get input field 0, which corresponds to the groupNameInput.\n -- Unfortunately \"self.getInputs()\" doesn't return the inputs in a guaranteed order.\n local nameField = nil\n for _, field in ipairs(inputFields) do\n if field.index == 0 then\n nameField = field\n end\n end\n\n memoryGroupName:set(nameField.value)\n end\nend\n\n--//////////////////////////////////////////////////////////////////////////////\n\n\nfunction updateSave()\n local data_to_save = { [\"ml\"] = memoryList, [\"groupName\"] = memoryGroupName:get() }\n saved_data = JSON.encode(data_to_save)\n self.script_state = saved_data\nend\n\nfunction combineMemoryFromBagsWithin()\n local bagObjList = self.getObjects()\n for _, bagObj in ipairs(bagObjList) do\n local data = bagObj.lua_script_state\n if data ~= nil then\n local j = JSON.decode(data)\n if j ~= nil and j.ml ~= nil then\n for guid, entry in pairs(j.ml) do\n memoryList[guid] = entry\n end\n end\n end\n end\nend\n\nfunction updateMemoryWithMoves()\n memoryList = memoryListBackup\n --get the first transposed object's coordinates\n local obj = getObjectFromGUID(moveGuid)\n\n -- p1 is where needs to go, p2 is where it was\n local refObjPos = memoryList[moveGuid].pos\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\n local movedRotation = obj.getRotation()\n for guid, entry in pairs(memoryList) do\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\n -- memoryList[guid].rot.x = movedRotation.x\n -- memoryList[guid].rot.y = movedRotation.y\n -- memoryList[guid].rot.z = movedRotation.z\n end\n\n --theList[obj.getGUID()] = {\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\n -- lock=obj.getLock()\n --}\n moveList = {}\nend\n\nfunction onload(saved_data)\n GlobalMemoryGroups:onLoad(self.getGUID())\n AllMemoryBagsInScene:add(self.getGUID())\n\n fresh = true\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n --Set up information off of loaded_data\n memoryList = loaded_data.ml\n memoryGroupName:set(loaded_data.groupName)\n else\n --Set up information for if there is no saved saved data\n memoryList = {}\n memoryGroupName:set(nil)\n end\n\n moveList = {}\n moveGuid = nil\n\n if next(memoryList) == nil then\n createSetupButton()\n else\n fresh = false\n createMemoryActionButtons()\n end\nend\n\n--Beginning Setup\n\n\n--Make setup button\nfunction createSetupButton()\n self.createButton({\n label = \"Setup\", click_function = \"buttonClick_setup\", function_owner = self,\n position = { 0, 0.3, 4.5 }, rotation = { 0, 0, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\nend\n\n--Triggered by Transpose button\nfunction buttonClick_transpose()\n moveGuid = nil\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", { 0.75, 0.75, 1 })\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n moveList = {}\n self.clearButtons()\n self.clearInputs()\n createButtonsOnAllObjects(true)\n createSetupActionButtons(true)\nend\n\n--Triggered by setup button,\nfunction buttonClick_setup()\n memoryListBackup = duplicateTable(memoryList)\n memoryList = {}\n self.clearButtons()\n self.clearInputs()\n createButtonsOnAllObjects(false)\n createSetupActionButtons(false)\nend\n\nfunction getAllObjectsInMemory()\n local objTable = {}\n local curObj = {}\n\n for guid in pairs(memoryListBackup) do\n curObj = getObjectFromGUID(guid)\n table.insert(objTable, curObj)\n end\n\n return objTable\n -- return getAllObjects()\nend\n\n--Creates selection buttons on objects\nfunction createButtonsOnAllObjects(move)\n buttonIndexMap = {}\n local howManyButtons = 0\n\n local objsToHaveButtons = {}\n if move == true then\n objsToHaveButtons = getAllObjectsInMemory()\n else\n objsToHaveButtons = getAllObjects()\n end\n\n for _, obj in ipairs(objsToHaveButtons) do\n if obj ~= self then\n --On a normal bag, the button positions aren't the same size as the bag.\n globalScaleFactor = 1 / self.getScale().x\n --Super sweet math to set button positions\n local selfPos = self.getPosition()\n local objPos = obj.getPosition()\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\n local objPos = rotateLocalCoordinates(deltaPos, self)\n objPos.x = -objPos.x * globalScaleFactor\n objPos.y = objPos.y * globalScaleFactor\n objPos.z = objPos.z * globalScaleFactor\n --Workaround for custom PDFs\n if obj.Book then\n objPos.y = objPos.y + 0.5\n end\n --Offset rotation of bag\n local rot = self.getRotation()\n rot.y = -rot.y + 180\n --Create function\n local funcName = \"selectButton_\" .. howManyButtons\n local func = function() buttonClick_selection(obj, move) end\n local color = { 0.75, 0.25, 0.25, 0.6 }\n local colorMove = { 0, 0, 1, 0.6 }\n if move == true then\n color = colorMove\n end\n self.setVar(funcName, func)\n self.createButton({\n click_function = funcName, function_owner = self,\n position = objPos, rotation = rot, height = 1000, width = 1000,\n color = color,\n })\n buttonIndexMap[obj.getGUID()] = howManyButtons\n howManyButtons = howManyButtons + 1\n end\n end\nend\n\n--Creates submit and cancel buttons\nfunction createSetupActionButtons(move)\n self.createButton({\n label = \"Cancel\", click_function = \"buttonClick_cancel\", function_owner = self,\n position = { 0, 0.3, 4.5 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n\n self.createButton({\n label = \"Submit\", click_function = \"buttonClick_submit\", function_owner = self,\n position = { 0, 0.3, 5.3 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n\n if move == false then\n self.createButton({\n label = \"Add\", click_function = \"buttonClick_add\", function_owner = self,\n position = { 0, 0.3, 6.1 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 0.25, 1, 0.25 }\n })\n\n self.createButton({\n label = \"Selection\", click_function = \"editDragSelection\", function_owner = self,\n position = { 0, 0.3, -4.5 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n groupNameInput:create(memoryGroupName:get())\n\n if fresh == false then\n self.createButton({\n label = \"Set New\", click_function = \"buttonClick_setNew\", function_owner = self,\n position = { 0, 0.3, 6.9 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 0.75, 0.75, 1 }\n })\n self.createButton({\n label = \"Remove\", click_function = \"buttonClick_remove\", function_owner = self,\n position = { 0, 0.3, 7.7 }, rotation = { 0, 0, 0 }, height = 350, width = 1100,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 0.25, 0.25 }\n })\n end\n end\n\n self.createButton({\n label = \"Reset\", click_function = \"buttonClick_reset\", function_owner = self,\n position = { 3, 0.3, 0 }, rotation = { 0, 90, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\nend\n\n--During Setup\n\n\n--Checks or unchecks buttons\nfunction buttonClick_selection(obj, move)\n local index = buttonIndexMap[obj.getGUID()]\n local colorMove = { 0, 0, 1, 0.6 }\n local color = { 0, 1, 0, 0.6 }\n\n previousGuid = selectedGuid\n selectedGuid = obj.getGUID()\n\n theList = memoryList\n if move == true then\n theList = moveList\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\n local prevObj = getObjectFromGUID(previousGuid)\n prevObj.highlightOff()\n self.editButton({ index = previousIndex, color = colorMove })\n theList[previousGuid] = nil\n end\n previousIndex = index\n end\n\n if theList[selectedGuid] == nil then\n self.editButton({ index = index, color = color })\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n theList[obj.getGUID()] = {\n pos = { x = round(pos.x, 4), y = round(pos.y, 4), z = round(pos.z, 4) },\n rot = { x = round(rot.x, 4), y = round(rot.y, 4), z = round(rot.z, 4) },\n lock = obj.getLock(),\n tint = obj.getColorTint()\n }\n obj.highlightOn({ 0, 1, 0 })\n else\n color = { 0.75, 0.25, 0.25, 0.6 }\n if move == true then\n color = colorMove\n end\n self.editButton({ index = index, color = color })\n theList[obj.getGUID()] = nil\n obj.highlightOff()\n end\nend\n\nfunction editDragSelection(bagObj, player, remove)\n local selectedObjs = Player[player].getSelectedObjects()\n if not remove then\n for _, obj in ipairs(selectedObjs) do\n local index = buttonIndexMap[obj.getGUID()]\n --Ignore if already in the memory list, or does not have a button\n if index and not memoryList[obj.getGUID()] then\n self.editButton({ index = index, color = { 0, 1, 0, 0.6 } })\n --Adding pos/rot to memory table\n local pos, rot = obj.getPosition(), obj.getRotation()\n --I need to add it like this or it won't save due to indexing issue\n memoryList[obj.getGUID()] = {\n pos = { x = round(pos.x, 4), y = round(pos.y, 4), z = round(pos.z, 4) },\n rot = { x = round(rot.x, 4), y = round(rot.y, 4), z = round(rot.z, 4) },\n lock = obj.getLock(),\n tint = obj.getColorTint()\n }\n obj.highlightOn({ 0, 1, 0 })\n end\n end\n else\n for _, obj in ipairs(selectedObjs) do\n local index = buttonIndexMap[obj.getGUID()]\n if index and memoryList[obj.getGUID()] then\n color = { 0.75, 0.25, 0.25, 0.6 }\n self.editButton({ index = index, color = color })\n memoryList[obj.getGUID()] = nil\n obj.highlightOff()\n end\n end\n end\nend\n\n--Cancels selection process\nfunction buttonClick_cancel()\n memoryList = memoryListBackup\n moveList = {}\n self.clearButtons()\n self.clearInputs()\n if next(memoryList) == nil then\n createSetupButton()\n else\n createMemoryActionButtons()\n end\n removeAllHighlights()\n broadcastToAll(\"Selection Canceled\", { 1, 1, 1 })\n moveGuid = nil\nend\n\n--Saves selections\nfunction buttonClick_submit()\n fresh = false\n if next(moveList) ~= nil then\n for guid in pairs(moveList) do\n moveGuid = guid\n end\n if memoryListBackup[moveGuid] == nil then\n broadcastToAll(\"Item selected for moving is not already in memory\", { 1, 0.25, 0.25 })\n else\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", { 0.75, 0.75, 1 })\n self.clearButtons()\n self.clearInputs()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(moveList) do\n moveGuid = guid\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n updateMemoryWithMoves()\n updateSave()\n buttonClick_place()\n end\n elseif next(memoryList) == nil and moveGuid == nil then\n memoryList = memoryListBackup\n broadcastToAll(\"No selections made.\", { 0.75, 0.25, 0.25 })\n end\n combineMemoryFromBagsWithin()\n groupNameInput:setGroupNameToInputField()\n self.clearButtons()\n self.clearInputs()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count .. \" Objects Saved\", { 1, 1, 1 })\n updateSave()\n moveGuid = nil\nend\n\nfunction combineTables(first_table, second_table)\n for k, v in pairs(second_table) do first_table[k] = v end\nend\n\nfunction buttonClick_add()\n fresh = false\n combineTables(memoryList, memoryListBackup)\n broadcastToAll(\"Adding internal bags and selections to existing memory\", { 0.25, 0.75, 0.25 })\n combineMemoryFromBagsWithin()\n self.clearButtons()\n self.clearInputs()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count .. \" Objects Saved\", { 1, 1, 1 })\n updateSave()\nend\n\nfunction buttonClick_remove()\n broadcastToAll(\"Removing Selected Entries From Memory\", { 1.0, 0.25, 0.25 })\n self.clearButtons()\n self.clearInputs()\n createMemoryActionButtons()\n local count = 0\n for guid in pairs(memoryList) do\n count = count + 1\n memoryListBackup[guid] = nil\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then obj.highlightOff() end\n end\n broadcastToAll(count .. \" Objects Removed\", { 1, 1, 1 })\n memoryList = memoryListBackup\n updateSave()\nend\n\nfunction buttonClick_setNew()\n broadcastToAll(\"Setting new position relative to items in memory\", { 0.75, 0.75, 1 })\n self.clearButtons()\n self.clearInputs()\n createMemoryActionButtons()\n local count = 0\n for _, obj in ipairs(getAllObjects()) do\n guid = obj.guid\n if memoryListBackup[guid] ~= nil then\n count = count + 1\n memoryListBackup[guid].pos = obj.getPosition()\n memoryListBackup[guid].rot = obj.getRotation()\n memoryListBackup[guid].lock = obj.getLock()\n memoryListBackup[guid].tint = obj.getColorTint()\n end\n end\n broadcastToAll(count .. \" Objects Saved\", { 1, 1, 1 })\n memoryList = memoryListBackup\n updateSave()\nend\n\n--Resets bag to starting status\nfunction buttonClick_reset()\n fresh = true\n memoryList = {}\n memoryGroupName:set(nil)\n self.clearButtons()\n self.clearInputs()\n createSetupButton()\n removeAllHighlights()\n broadcastToAll(\"Tool Reset\", { 1, 1, 1 })\n updateSave()\nend\n\n--After Setup\n\n\n--Creates recall and place buttons\nfunction createMemoryActionButtons()\n self.createButton({\n label = \"Place\", click_function = \"buttonClick_place\", function_owner = self,\n position = { 0, 0.3, 4.5 }, rotation = { 0, 0, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n self.createButton({\n label = \"Recall\", click_function = \"buttonClick_recall\", function_owner = self,\n position = { 0, 0.3, 5.3 }, rotation = { 0, 0, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n self.createButton({\n label = \"Setup\", click_function = \"buttonClick_setup\", function_owner = self,\n position = { 3, 0.3, 0 }, rotation = { 0, 90, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 1, 1, 1 }\n })\n self.createButton({\n label = \"Move\", click_function = \"buttonClick_transpose\", function_owner = self,\n position = { 3.8, 0.3, 0 }, rotation = { 0, 90, 0 }, height = 350, width = 800,\n font_size = 250, color = { 0, 0, 0 }, font_color = { 0.75, 0.75, 1 }\n })\nend\n\n--Sends objects from bag/table to their saved position/rotation\nfunction buttonClick_place()\n if anyOtherBagsInMyGroupArePlaced() then\n recallOtherBagsInMyGroup()\n Wait.frames(_placeObjects, CONFIG.MEMORY_GROUP.FRAME_DELAY_BEFORE_PLACING_OBJECTS)\n else\n _placeObjects()\n end\nend\n\nfunction _placeObjects()\n local bagObjList = self.getObjects()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n --If obj is out on the table, move it to the saved pos/rot\n if obj ~= nil then\n obj.setPositionSmooth(entry.pos)\n obj.setRotationSmooth(entry.rot)\n obj.setLock(entry.lock)\n obj.setColorTint(entry.tint)\n else\n --If obj is inside of the bag\n for _, bagObj in ipairs(bagObjList) do\n if bagObj.guid == guid then\n local item = self.takeObject({\n guid = guid, position = entry.pos, rotation = entry.rot, smooth = false\n })\n item.setLock(entry.lock)\n item.setColorTint(entry.tint)\n break\n end\n end\n end\n end\n broadcastToAll(\"Objects Placed\", { 1, 1, 1 })\nend\n\n--Recalls objects to bag from table\nfunction buttonClick_recall()\n for guid, entry in pairs(memoryList) do\n local obj = getObjectFromGUID(guid)\n if obj ~= nil then self.putObject(obj) end\n end\n broadcastToAll(\"Objects Recalled\", { 1, 1, 1 })\nend\n\n--Utility functions\n\n\n--Find delta (difference) between 2 x/y/z coordinates\nfunction findOffsetDistance(p1, p2, obj)\n local yOffset = 0\n if obj ~= nil then\n local bounds = obj.getBounds()\n yOffset = (bounds.size.y - bounds.offset.y)\n end\n local deltaPos = {}\n deltaPos.x = (p2.x - p1.x)\n deltaPos.y = (p2.y - p1.y) + yOffset\n deltaPos.z = (p2.z - p1.z)\n return deltaPos\nend\n\n--Used to rotate a set of coordinates by an angle\nfunction rotateLocalCoordinates(desiredPos, obj)\n local objPos, objRot = obj.getPosition(), obj.getRotation()\n local angle = math.rad(objRot.y)\n local x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\n local z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\n --return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\n return { x = x, y = desiredPos.y, z = z }\nend\n\nfunction rotateMyCoordinates(desiredPos, obj)\n local angle = math.rad(obj.getRotation().y)\n local x = desiredPos.x * math.sin(angle)\n local z = desiredPos.z * math.cos(angle)\n return { x = x, y = desiredPos.y, z = z }\nend\n\n--Coroutine delay, in seconds\nfunction wait(time)\n local start = os.time()\n repeat coroutine.yield(0) until os.time() > start + time\nend\n\n--Duplicates a table (needed to prevent it making reference to the same objects)\nfunction duplicateTable(oldTable)\n local newTable = {}\n for k, v in pairs(oldTable) do\n newTable[k] = v\n end\n return newTable\nend\n\n--Moves scripted highlight from all objects\nfunction removeAllHighlights()\n for _, obj in ipairs(getAllObjects()) do\n obj.highlightOff()\n end\nend\n\n--Round number (num) to the Nth decimal (dec)\nfunction round(num, dec)\n local mult = 10 ^ (dec or 0)\n return math.floor(num * mult + 0.5) / mult\nend\n\n--[[\nThis object provides access to a variable stored on the \"Global script\".\nThe variable holds the GUIDs for every Utility Memory Bag in the scene.\nExample:\n{'805ebd', '35cc21', 'fc8886', 'f50264', '5f5f63'}\n--]]\nAllMemoryBagsInScene = {\n NAME_OF_GLOBAL_VARIABLE = \"_UtilityMemoryBag_AllMemoryBagsInScene\"\n}\n\nfunction AllMemoryBagsInScene:add(guid)\n local guids = Global.getTable(self.NAME_OF_GLOBAL_VARIABLE) or {}\n table.insert(guids, guid)\n Global.setTable(self.NAME_OF_GLOBAL_VARIABLE, guids)\nend\n\nfunction AllMemoryBagsInScene:getGuidList()\n return Global.getTable(self.NAME_OF_GLOBAL_VARIABLE) or {}\nend\n",
"LuaScriptState": "{\"ml\":{\"06a742\":{\"lock\":false,\"pos\":{\"x\":32.9693,\"y\":1.0444,\"z\":-85.1042},\"rot\":{\"x\":0.0208,\"y\":269.9998,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"11d148\":{\"lock\":false,\"pos\":{\"x\":16.9687,\"y\":1.0615,\"z\":-79.1},\"rot\":{\"x\":359.6979,\"y\":269.9996,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"1bac4d\":{\"lock\":false,\"pos\":{\"x\":24.9693,\"y\":1.0415,\"z\":-85.1},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"20d53c\":{\"lock\":false,\"pos\":{\"x\":24.9693,\"y\":1.045,\"z\":-73.1042},\"rot\":{\"x\":0.0208,\"y\":270.0005,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"2275ed\":{\"lock\":false,\"pos\":{\"x\":29.3401,\"y\":1.3683,\"z\":-65.8084},\"rot\":{\"x\":359.9792,\"y\":89.9912,\"z\":359.9832},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"38d1cd\":{\"lock\":false,\"pos\":{\"x\":32.9693,\"y\":1.0461,\"z\":-79.1042},\"rot\":{\"x\":0.0208,\"y\":270.0052,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"3a08d9\":{\"lock\":false,\"pos\":{\"x\":8.9693,\"y\":1.0739,\"z\":-79.1},\"rot\":{\"x\":0.0208,\"y\":270.0002,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"4c47d8\":{\"lock\":false,\"pos\":{\"x\":16.968,\"y\":1.058,\"z\":-91.1},\"rot\":{\"x\":359.6978,\"y\":269.9948,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"56a91d\":{\"lock\":false,\"pos\":{\"x\":32.9693,\"y\":1.0479,\"z\":-73.1042},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"8f7e04\":{\"lock\":false,\"pos\":{\"x\":8.9714,\"y\":1.0756,\"z\":-73.1},\"rot\":{\"x\":0.0208,\"y\":269.9901,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"d5cd12\":{\"lock\":false,\"pos\":{\"x\":32.9693,\"y\":1.0426,\"z\":-91.1042},\"rot\":{\"x\":0.0208,\"y\":269.9992,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"e227ad\":{\"lock\":false,\"pos\":{\"x\":16.968,\"y\":1.0598,\"z\":-85.1},\"rot\":{\"x\":359.6978,\"y\":269.9995,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"e32dc3\":{\"lock\":false,\"pos\":{\"x\":16.97,\"y\":1.0633,\"z\":-73.0999},\"rot\":{\"x\":359.698,\"y\":269.9999,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"ed1d0c\":{\"lock\":false,\"pos\":{\"x\":8.9693,\"y\":1.0721,\"z\":-85.1},\"rot\":{\"x\":0.0208,\"y\":269.9916,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"f03c2d\":{\"lock\":false,\"pos\":{\"x\":24.9693,\"y\":1.0432,\"z\":-79.1},\"rot\":{\"x\":0.0208,\"y\":270.0001,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}},\"f5f3b5\":{\"lock\":false,\"pos\":{\"x\":24.9693,\"y\":1.0397,\"z\":-91.1},\"rot\":{\"x\":0.0208,\"y\":270.0046,\"z\":0.0168},\"tint\":{\"a\":1,\"b\":1,\"g\":1,\"r\":1}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "06a742",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 32.969,
"posY": 1.044,
"posZ": -85.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.252,
"posY": 3.009,
"posZ": 11.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "11d148",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.969,
"posY": 1.062,
"posZ": -79.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "09 The Scarlet Keys",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/09%20The%20Scarlet%20Keys.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": "c50a3a",
"Name": "Custom_PDF",
"Transform": {
"posX": 16.697,
"posY": 3.047,
"posZ": -78.723,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "09 The Scarlet Keys",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%2009%20The%20Scarlet%20Keys.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1bac4d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 24.969,
"posY": 1.041,
"posZ": -85.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.574,
"posY": 2.51,
"posZ": 5.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "20d53c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 24.969,
"posY": 1.045,
"posZ": -73.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.737,
"posY": 2.511,
"posZ": -7.436,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.228,
"posY": 2.704,
"posZ": -9.378,
"rotX": 3.0,
"rotY": 270.0,
"rotZ": 2.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "2275ed",
"Name": "Notecard",
"Transform": {
"posX": 29.34,
"posY": 1.368,
"posZ": -65.808,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"scaleX": 1.25,
"scaleY": 1.25,
"scaleZ": 1.25
},
"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": "38d1cd",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 32.969,
"posY": 1.046,
"posZ": -79.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.25,
"posY": 3.029,
"posZ": 19.986,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "3a08d9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 8.969,
"posY": 1.074,
"posZ": -79.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.122,
"posY": 2.511,
"posZ": 0.255,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "4c47d8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.968,
"posY": 1.058,
"posZ": -91.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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": "e19e46",
"Name": "Custom_PDF",
"Transform": {
"posX": 17.318,
"posY": 2.845,
"posZ": -92.94,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "S2 10 Fortune and Folly",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%2010%20Fortune%20and%20Folly.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5dbf1",
"Name": "Custom_PDF",
"Transform": {
"posX": -15.355,
"posY": 2.511,
"posZ": -15.28,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "S2 09 Machinations Through Time",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%2009%20Machinations%20Through%20Time.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bffa04",
"Name": "Custom_PDF",
"Transform": {
"posX": -15.976,
"posY": 2.511,
"posZ": -13.355,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": 16.576,
"posY": 2.846,
"posZ": -90.917,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "56a91d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 32.969,
"posY": 1.048,
"posZ": -73.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.985,
"posY": 2.511,
"posZ": 19.133,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "8f7e04",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 8.971,
"posY": 1.076,
"posZ": -73.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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": "f053b0",
"Name": "Custom_PDF",
"Transform": {
"posX": 8.563,
"posY": 2.859,
"posZ": -73.32,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 05 Red Tide Rising",
"Description": "Wendy Adams",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%2005%20Red%20Tide%20Rising.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a37a83",
"Name": "Custom_PDF",
"Transform": {
"posX": 11.118,
"posY": 2.864,
"posZ": -72.564,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 04 By the Book",
"Description": "Roland Banks",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 9.889,
"posY": 2.863,
"posZ": -72.852,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 03 Bad Blood",
"Description": "Agnes Baker",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 9.928,
"posY": 2.864,
"posZ": -71.817,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 02 All or Nothing",
"Description": "\"Skids\" O'Toole",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 9.656,
"posY": 2.859,
"posZ": -72.195,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 01 Read or Die",
"Description": "Daisy Walker",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "443855",
"Name": "Custom_PDF",
"Transform": {
"posX": 10.16,
"posY": 2.863,
"posZ": -72.672,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 DC Death Itself",
"Description": "The Pallid Mask",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%20DC%20Death%20Itself.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d72c48",
"Name": "Custom_PDF",
"Transform": {
"posX": 8.449,
"posY": 2.859,
"posZ": -73.655,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "P1 DC Then it Multiplied",
"Description": "Undimensioned and Unseen",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%20DC%20Then%20It%20Multiplied.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "409b50",
"Name": "Custom_PDF",
"Transform": {
"posX": 9.933,
"posY": 2.863,
"posZ": -70.772,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "d5cd12",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 32.969,
"posY": 1.043,
"posZ": -91.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.236,
"posY": 2.511,
"posZ": -5.479,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.079,
"posY": 2.511,
"posZ": -5.591,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "e227ad",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.968,
"posY": 1.06,
"posZ": -85.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.815,
"posY": 2.647,
"posZ": 0.798,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 2.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.414,
"posY": 2.587,
"posZ": -0.941,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 1.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.318,
"posY": 2.658,
"posZ": -1.465,
"rotX": 3.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.482,
"posY": 2.511,
"posZ": -0.145,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.315,
"posY": 2.511,
"posZ": -1.398,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.758,
"posY": 2.787,
"posZ": -0.99,
"rotX": 5.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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.133,
"posY": 2.511,
"posZ": 0.024,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "e32dc3",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 16.97,
"posY": 1.063,
"posZ": -73.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "08 Edge of the Earth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/08%20Edge%20of%20the%20Earth.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": "c50a3a",
"Name": "Custom_PDF",
"Transform": {
"posX": -5.104,
"posY": 2.714,
"posZ": -22.714,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "08 Edge of the Earth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%2008%20Edge%20of%20the%20Earth.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ed1d0c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 8.969,
"posY": 1.072,
"posZ": -85.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "C2 Alice in Wonderland",
"Description": "Designed by Tyler Gotch",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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/C2%20Alice%20in%20Wonderland.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": 8.969,
"posY": 1.174,
"posZ": -79.104,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"Nickname": "C2 Alice in Wonderland",
"Description": "Designed by Tyler Gotch",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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%20C2%20Alice%20in%20Wonderland.pdf?raw=true",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f03c2d",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 24.969,
"posY": 1.043,
"posZ": -79.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.449,
"posY": 2.511,
"posZ": 14.842,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "f5f3b5",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 24.969,
"posY": 1.04,
"posZ": -91.1,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.847,
"posY": 2.818,
"posZ": 73.957,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": -3.487,
"posY": 2.511,
"posZ": -14.208,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.76,
"scaleY": 1.0,
"scaleZ": 1.76
},
"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": "d45664",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 29.323,
"posY": 4.364,
"posZ": -21.398,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"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\n-- updated by: Chr1Z\n-- original by: bankey\n-- description: displays cards in it with cost/skill icons\nlocal information = {\n version = \"1.7\",\n last_updated = \"24.11.2022\"\n}\n\nlocal option_text = {\n \"Ancestral Knowledge\",\n \"Astronomical Atlas\",\n \"Crystallizer of Dreams\",\n \"Diana Stanley\",\n \"Gloria Goldberg\",\n \"Sefina Rousseau\",\n \"Wooden Sledge\"\n}\n\nlocal imageList = {\n -- Ancestral Knowledge\n \"http://cloud-3.steamusercontent.com/ugc/1915746489207287888/2F9F6F211ED0F98E66C9D35D93221E4C7FB6DD3C/\",\n -- Astronomical Atlas\n \"http://cloud-3.steamusercontent.com/ugc/1754695853007989004/9153BC204FC707AE564ECFAC063A11CB8C2B5D1E/\",\n -- Crystallizer of Dreams\n \"http://cloud-3.steamusercontent.com/ugc/1915746489207280958/100F16441939E5E23818651D1EB5C209BF3125B9/\",\n -- Diana Stanley\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919071208/1AB7222850201630826BFFBA8F2BD0065E2D572F/\",\n -- Gloria Goldberg\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919102502/453D4426118C8A6DE2EA281184716E26CA924C84/\",\n -- Sefina Rousseau\n \"http://cloud-3.steamusercontent.com/ugc/1754695635919099826/3C3CBFFAADB2ACA9957C736491F470AE906CC953/\",\n -- Wooden Sledge\n \"http://cloud-3.steamusercontent.com/ugc/1750192233783143973/D526236AAE16BDBB98D3F30E27BAFC1D3E21F4AC/\"\n}\n\n-- save state and options to restore onLoad\nfunction onSave() return JSON.encode({ cardsInBag, showCost, showIcons }) end\n\n-- load variables and create context menu\nfunction onLoad(saved_data)\n local loaded_data = JSON.decode(saved_data)\n cardsInBag = loaded_data[1] or {}\n showCost = loaded_data[2] or true\n showIcons = loaded_data[3] or true\n\n recreateButtons()\n\n self.addContextMenuItem(\"Select image\", selectImage)\n self.addContextMenuItem(\"Toggle cost\", function(color)\n showCost = not showCost\n printToColor(\"Show cost of cards: \" .. tostring(showCost), color, \"White\")\n refresh()\n end)\n\n self.addContextMenuItem(\"Toggle skill icons\", function(color)\n showIcons = not showIcons\n printToColor(\"Show skill icons of cards: \" .. tostring(showIcons), color, \"White\")\n refresh()\n end)\n\n self.addContextMenuItem(\"More Information\", function()\n printToAll(\"------------------------------\", \"White\")\n printToAll(\"Attachment Helper v\" .. information[\"version\"] .. \" by Chr1Z\", \"Orange\")\n printToAll(\"original by: bankey\", \"White\")\n printToAll(\"last updated: \" .. information[\"last_updated\"], \"White\")\n end)\nend\n\nfunction selectImage(color)\n Player[color].showOptionsDialog(\"Select image:\", option_text, 1, function(_, option_index)\n local customInfo = self.getCustomObject()\n customInfo.diffuse = imageList[option_index]\n self.setCustomObject(customInfo)\n self.reload()\n end)\nend\n\n-- called for every card that enters\nfunction onObjectEnterContainer(container, object)\n if container == self then\n findCard(object.getGUID(), object.getName(), object.getGMNotes())\n recreateButtons()\n end\nend\n\n-- removes leaving cards from the \"cardInBag\" table\nfunction onObjectLeaveContainer(container, object)\n if container == self then\n local guid = object.getGUID()\n local found = false\n for i, card in ipairs(cardsInBag) do\n if card.id == guid then\n table.remove(cardsInBag, i)\n found = true\n break\n end\n end\n\n if found ~= true then\n local name = object.getName()\n for i, card in ipairs(cardsInBag) do\n if card.name == name then\n table.remove(cardsInBag, i)\n break\n end\n end\n end\n recreateButtons()\n end\nend\n\n-- refreshes displayed buttons based on contained cards\nfunction refresh()\n cardsInBag = {}\n for _, object in ipairs(self.getObjects()) do\n findCard(object.guid, object.name, object.gm_notes)\n end\n recreateButtons()\nend\n\n-- gets cost and icons for a card\nfunction findCard(guid, name, GMNotes)\n local cost = \"\"\n local icons = {}\n local metadata = {}\n local displayName = name\n\n if displayName == nil or displayName == \"\" then displayName = \"unnamed\" end\n if showCost or showIcons then metadata = JSON.decode(GMNotes) end\n\n if showCost then\n if GMNotes ~= \"\" then cost = metadata.cost end\n if cost == nil or cost == \"\" then cost = \"–\" end\n displayName = \"[\" .. cost .. \"] \" .. displayName\n end\n\n if showIcons then\n if GMNotes ~= \"\" then\n icons[1] = metadata.wildIcons\n icons[2] = metadata.willpowerIcons\n icons[3] = metadata.intellectIcons\n icons[4] = metadata.combatIcons\n icons[5] = metadata.agilityIcons\n end\n\n local IconTypes = { \"Wild\", \"Willpower\", \"Intellect\", \"Combat\", \"Agility\" }\n local found = false\n for i = 1, 5 do\n if icons[i] ~= nil and icons[i] ~= \"\" then\n if found == false then\n displayName = displayName .. \"\\n\" .. IconTypes[i] .. \": \" .. icons[i]\n found = true\n else\n displayName = displayName .. \" \" .. IconTypes[i] .. \": \" .. icons[i]\n end\n end\n end\n end\n table.insert(cardsInBag, { name = name, displayName = displayName, id = guid })\nend\n\n-- recreates buttons with up-to-date labels\nfunction recreateButtons()\n self.clearButtons()\n local verticalPosition = 1.65\n\n for _, card in ipairs(cardsInBag) do\n local id = card.id\n local funcName = \"removeCard\" .. id\n self.setVar(funcName, function() removeCard(id) end)\n self.createButton({\n label = card.displayName,\n click_function = funcName,\n function_owner = self,\n position = { 0, 0, verticalPosition },\n height = 200,\n width = 1200,\n font_size = string.len(card.displayName) > 20 and 75 or 100\n })\n verticalPosition = verticalPosition - 0.5\n end\n\n local countLabel = '\\nAttachment\\nHelper\\n' .. information[\"version\"]\n if #cardsInBag ~= 0 then countLabel = #cardsInBag end\n\n self.createButton({\n label = countLabel,\n click_function = \"none\",\n function_owner = self,\n position = { 0, 0, -1.35 },\n height = 0,\n width = 0,\n font_size = 225,\n font_color = { 1, 1, 1 }\n })\nend\n\n-- click-function for buttons to take a card out of the bag\nfunction removeCard(cardGUID)\n self.takeObject({\n guid = cardGUID,\n rotation = self.getRotation(),\n position = self.getPosition() + Vector(0, 0.25, 0),\n callback_function = function(obj) obj.resting = true end\n })\nend",
"LuaScriptState": "[[],true,true]",
"XmlUI": ""
},
{
"GUID": "e17c9e",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -27.382,
"posY": 2.505,
"posZ": -27.938,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 1.2,
"scaleY": 1.2,
"scaleZ": 1.2
},
"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.32,
"posY": 1.989,
"posZ": 0.156,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.713,
"posY": 2.86,
"posZ": -4.792,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.243,
"posY": 1.971,
"posZ": -4.644,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.879,
"posY": 1.971,
"posZ": -4.199,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.017,
"posY": 1.971,
"posZ": -4.015,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.494,
"posY": 1.971,
"posZ": -4.498,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.617,
"posY": 1.971,
"posZ": -1.601,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.641,
"posY": 1.971,
"posZ": -0.706,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.774,
"posY": 2.067,
"posZ": -1.265,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Black Hanekawa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.915,
"posY": 2.528,
"posZ": -0.451,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Hitagi Senjougahara",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.122,
"posY": 2.067,
"posZ": 1.909,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Yotsugi Ononoki",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.097,
"posY": 2.067,
"posZ": 2.043,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Suruga Kanbaru",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.563,
"posY": 2.067,
"posZ": 1.685,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Tsubusa Hanekawa",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.552,
"posY": 2.067,
"posZ": 0.949,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Shinobu Oshino",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": 17.148,
"posY": 3.651,
"posZ": 2.315,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 2.0,
"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": "8dc454",
"Name": "Notecard",
"Transform": {
"posX": 21.321,
"posY": 2.041,
"posZ": 14.049,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "[b]Arkham Fantasy - Pixel Art Mini-Cards[/b]",
"Description": "Updated - 2022-09-13\n- Added Scarlet Keys Investigator\n- Added Summoned Servitor\n- Added Lily Chen Quad-wielding Butterfly Swords and wearing Track Shoes under [b]Alternatives[/b].\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": "8b8b41",
"Name": "Bag",
"Transform": {
"posX": -0.206,
"posY": 1.989,
"posZ": 9.149,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.32578,
"b": 0.05692
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": "862983",
"Name": "Custom_Tile",
"Transform": {
"posX": 16.201,
"posY": 1.971,
"posZ": -7.486,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632961194/758470726C5430CA0E5D55E3B8B96162DD54F145/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632950023/32B84D3806148A6BB12304CDBDC1B4B0AEF3BE65/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "94767f",
"Name": "Custom_Tile",
"Transform": {
"posX": 3.30093718,
"posY": 0.960000753,
"posZ": -3.76547241,
"rotX": -4.64144723E-05,
"rotY": 180.000031,
"rotZ": -1.710464E-05,
"scaleX": 0.801324666,
"scaleY": 1.0,
"scaleZ": 0.801324666
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632961243/4484267F67622813B829B1D24E9C35A200828313/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632950061/3DD39FE00BCF2D0F995862FF7BEE8F9B07552894/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f8c290",
"Name": "Bag",
"Transform": {
"posX": 13.276,
"posY": 3.288,
"posZ": -3.797,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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": "b3859e",
"Name": "Custom_Tile",
"Transform": {
"posX": 19.423,
"posY": 1.971,
"posZ": 4.171,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Lily Chen (Quadwield)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632874602/AD80AD0552BBD9885B868EEE71189AB51029B858/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632893474/4AF139BBCD80D1C20CB0ACCCB187A59716C129E2/",
"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.09603658,
"posY": 0.960000157,
"posZ": 0.08149373,
"rotX": -2.042557E-05,
"rotY": 180.000015,
"rotZ": 1.34459406E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Lily Chen (Quadwield)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632874696/26560CEFEE751DBDD87EBE57FA825307CEE66A40/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632893519/00AEC6496FFB456329C276AF64D8B8272370B461/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f5c62d",
"Name": "Custom_Tile",
"Transform": {
"posX": -0.338,
"posY": 3.013,
"posZ": -4.417,
"rotX": 358.0,
"rotY": 180.0,
"rotZ": 359.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.847,
"posY": 3.007,
"posZ": -4.413,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "8902b4",
"Name": "Custom_Tile",
"Transform": {
"posX": 29.591,
"posY": 1.971,
"posZ": 19.198,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "be4f57",
"Name": "Custom_Tile",
"Transform": {
"posX": 6.076,
"posY": 3.038,
"posZ": -4.601,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "7ef8b0",
"Name": "Bag",
"Transform": {
"posX": 14.227,
"posY": 3.279,
"posZ": -2.708,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.776,
"posY": 3.029,
"posZ": -1.858,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 359.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.753,
"posY": 3.026,
"posZ": -2.204,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.661,
"posY": 1.786,
"posZ": 0.986,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.192,
"posY": 3.027,
"posZ": -0.305,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.655,
"posY": 3.027,
"posZ": -0.344,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.073,
"posY": 3.036,
"posZ": -0.385,
"rotX": 1.0,
"rotY": 180.0,
"rotZ": 1.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.453,
"posY": 3.027,
"posZ": -0.406,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.923,
"posY": 3.011,
"posZ": 0.641,
"rotX": 4.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "151d53",
"Name": "Bag",
"Transform": {
"posX": 8.636,
"posY": 1.786,
"posZ": 2.398,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.563,
"posY": 3.026,
"posZ": -3.217,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.893,
"posY": 3.026,
"posZ": -3.189,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.196,
"posY": 3.026,
"posZ": -3.201,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.488,
"posY": 3.03,
"posZ": -3.207,
"rotX": 1.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.911,
"posY": 3.026,
"posZ": -3.23,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "4c6a2e",
"Name": "Bag",
"Transform": {
"posX": 15.038,
"posY": 3.288,
"posZ": -2.646,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scarlet Keys",
"Description": "",
"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,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ba9781",
"Name": "Custom_Tile",
"Transform": {
"posX": 19.265,
"posY": 2.12,
"posZ": 1.937,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Charlie Kane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1814399894375014306/82D626CE83CFE1AE3F3A3B0A521F2DFB177DF83A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375030660/C6ED3F6B2F5351E103EF1277496BE3088F332458/",
"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": 2.76233363,
"posY": 0.9599999,
"posZ": -0.41345,
"rotX": -3.02555077E-06,
"rotY": 180.000031,
"rotZ": -5.65799564E-06,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Charlie Kane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1814399894375034886/D7435766AE971D4EC42ABCB34CFA7A92B1446224/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375030766/8DDB3114E8EAA4E6644DA807E802C03C6F54CE58/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "798bfe",
"Name": "Custom_Tile",
"Transform": {
"posX": 16.7,
"posY": 1.971,
"posZ": 14.171,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Darrell Simmons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632960994/1370ADD64F9B581016C956F7EE4E7BB3A188B2D4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632947355/941B61A3D6771DEA0B0BBE3F603015073D856D40/",
"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.1882906,
"posY": 1.06,
"posZ": -0.45706138,
"rotX": -4.26442239E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Darrell Simmons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632961033/B7EB0A964E3A2D285CD669B65A6D09B80219FB0C/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632947406/933B7F89F93F09B06C4B089A621D4CE26BF65DB9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "983a88",
"Name": "Custom_Tile",
"Transform": {
"posX": 17.686,
"posY": 1.971,
"posZ": 11.669,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Amina Zidane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632960330/90E6E1620ACFD62849623DF312D75DEBA216BC4D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632946771/4FF34F9BE90B5C5882C6CADF9A172E0E2005BAA8/",
"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.7728888,
"posY": 0.9600003,
"posZ": -0.347122,
"rotX": -2.49907916E-05,
"rotY": 180.000015,
"rotZ": 1.26301475E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Amina Zidane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632960426/FCE12D171233548F91BAC47BD2DCA07557FDE6A7/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632946814/0D8C9527E570E7F83FC14B94C9FC5C76A263735C/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "162b69",
"Name": "Custom_Tile",
"Transform": {
"posX": 18.0,
"posY": 1.971,
"posZ": 11.686,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Kymani Jones",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632961069/49380318F33EDA0DC95C9A43322F0AFC8B4E5ECA/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632947978/2D4BE572C692C50D61B7F388A68BECBD2E1DACFE/",
"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": -2.856147,
"posY": 1.06000054,
"posZ": -0.32208845,
"rotX": -2.41434973E-05,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Kymani Jones",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632961104/698C84C2E7E5A963C804F1BC15DBD0958D3E12FF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632948332/14ABF11FB8CAFC7377425F01773F10B51B6DCA58/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "145581",
"Name": "Custom_Tile",
"Transform": {
"posX": 19.211,
"posY": 1.971,
"posZ": 12.862,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Vincent Lee",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632952090/B031DAA4DB280D0D11A41CF8351A200913C2F558/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632948931/5077C05281A2E04372EBFE2BA974DADB867B8910/",
"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": -4.512538,
"posY": 0.9600007,
"posZ": -1.78131974,
"rotX": 6.02748223E-05,
"rotY": 180.000092,
"rotZ": -2.07854464E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Vincent Lee",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632952227/81ADF0FEFD4F8AD83F296FC252792378622CFFFF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632948977/750B84BB13732CD535E935D33778FE514E924685/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": true,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f44b03",
"Name": "Custom_Tile",
"Transform": {
"posX": 17.477,
"posY": 1.971,
"posZ": 11.928,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"Nickname": "Carson Sinclair",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632951929/10AD6AC10E9125B22E4F0BF08EB53393DE19CF84/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632949464/2D23C92B73A245B0359ACF0FD728CA6D287A491E/",
"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": -6.271518,
"posY": 0.960001945,
"posZ": -0.225683391,
"rotX": -1.050811E-05,
"rotY": 180.000076,
"rotZ": -3.599694E-05,
"scaleX": 0.5657107,
"scaleY": 1.0,
"scaleZ": 0.5657107
},
"Nickname": "Carson Sinclair",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.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/1840305815632952034/870E0122E968A8072CC6F5300011507EE611917F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632949502/8370097D70B1D2EDEA4FBAA398F86577D05B8FF5/",
"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": 16.654,
"posY": 3.288,
"posZ": 0.415,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.16281,
"g": 0.82058,
"b": 0.96341
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 13.05,
"posY": 2.025,
"posZ": 0.184,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 12.838,
"posY": 3.473,
"posZ": 5.945,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": -0.380549461,
"posY": 1.06000018,
"posZ": 2.61119843,
"rotX": 3.82719481E-05,
"rotY": 179.999908,
"rotZ": 180.0,
"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": 12.61,
"posY": 3.472,
"posZ": 6.315,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 12.821,
"posY": 3.481,
"posZ": 5.84,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 11.651,
"posY": 3.434,
"posZ": 7.403,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "e65163",
"Name": "Bag",
"Transform": {
"posX": 14.211,
"posY": 3.288,
"posZ": -4.093,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70196,
"g": 0.0,
"b": 0.14874
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.658,
"posY": 3.026,
"posZ": -3.208,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.897,
"posY": 3.026,
"posZ": -3.246,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.233,
"posY": 3.026,
"posZ": -3.237,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.505,
"posY": 1.971,
"posZ": 15.45,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.612,
"posY": 3.031,
"posZ": -3.277,
"rotX": 358.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.417,
"posY": 1.787,
"posZ": 2.652,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.39143,
"g": 0.20585,
"b": 0.83798
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.207,
"posY": 3.027,
"posZ": -5.766,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.512,
"posY": 3.027,
"posZ": -5.778,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.796,
"posY": 3.045,
"posZ": -5.867,
"rotX": 1.0,
"rotY": 180.0,
"rotZ": 359.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.053,
"posY": 3.027,
"posZ": -5.91,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.146,
"posY": 3.034,
"posZ": 1.967,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.805,
"posY": 1.786,
"posZ": 2.844,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.10799,
"g": 0.0,
"b": 0.20035
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.903,
"posY": 3.027,
"posZ": -4.263,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.033,
"posY": 3.027,
"posZ": -4.301,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.172,
"posY": 3.027,
"posZ": -4.282,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.403,
"posY": 3.031,
"posZ": -4.313,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.555,
"posY": 3.027,
"posZ": -4.319,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.927,
"posY": 3.036,
"posZ": -4.345,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 358.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.598,
"posY": 2.859,
"posZ": 6.621,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.876,
"posY": 2.483,
"posZ": 6.451,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.804,
"posY": 2.571,
"posZ": 6.467,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.738,
"posY": 2.801,
"posZ": 6.367,
"rotX": 14.0,
"rotY": 177.0,
"rotZ": 7.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.322,
"posY": 3.029,
"posZ": 7.753,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 359.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.585,
"posY": 3.288,
"posZ": 1.935,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.41289,
"g": 0.0,
"b": 0.15196
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.622,
"posY": 1.792,
"posZ": -9.515,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.41176,
"g": 0.0,
"b": 0.15294
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.202,
"posY": 3.021,
"posZ": -5.563,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.94,
"posY": 3.021,
"posZ": -5.623,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.257,
"posY": 3.027,
"posZ": -5.737,
"rotX": 358.0,
"rotY": 180.0,
"rotZ": 1.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.752,
"posY": 3.021,
"posZ": -5.871,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.19,
"posY": 3.021,
"posZ": -6.041,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.76,
"posY": 3.021,
"posZ": -6.169,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.619,
"posY": 3.016,
"posZ": -7.014,
"rotX": 358.0,
"rotY": 180.0,
"rotZ": 2.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.34,
"posY": 3.023,
"posZ": -7.006,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 1.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.618,
"posY": 3.022,
"posZ": -7.048,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.709,
"posY": 1.971,
"posZ": 23.639,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.374,
"posY": 3.034,
"posZ": -0.189,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 1.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.893,
"posY": 2.283,
"posZ": 1.396,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.94251,
"g": 0.89346,
"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.98,
"posY": 3.027,
"posZ": -5.823,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.396,
"posY": 3.027,
"posZ": -5.886,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.789,
"posY": 3.027,
"posZ": -5.848,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.057,
"posY": 3.033,
"posZ": -5.896,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 2.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.327,
"posY": 3.027,
"posZ": -5.969,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.58,
"posY": 3.027,
"posZ": -6.025,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.731,
"posY": 1.786,
"posZ": 2.23,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.25261,
"b": 0.17373
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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.813,
"posY": 1.971,
"posZ": -4.712,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.528,
"posY": 3.027,
"posZ": -7.831,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.767,
"posY": 3.043,
"posZ": -7.821,
"rotX": 1.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.86,
"posY": 3.027,
"posZ": -7.844,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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.991,
"posY": 3.027,
"posZ": -7.855,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 14.623,
"posY": 3.277,
"posZ": 6.751,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.08469,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 22.153,
"posY": 1.971,
"posZ": 6.95,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 38.457,
"posY": 1.971,
"posZ": 14.892,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 35.114,
"posY": 1.971,
"posZ": 15.102,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 19.938,
"posY": 1.971,
"posZ": 9.85,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": 5.773,
"posY": 3.032,
"posZ": -0.521,
"rotX": 359.0,
"rotY": 180.0,
"rotZ": 2.0,
"scaleX": 0.57,
"scaleY": 1.0,
"scaleZ": 0.57
},
"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": "74d499",
"Name": "Bag",
"Transform": {
"posX": -1.249,
"posY": 1.987,
"posZ": 1.393,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"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.12265,
"b": 0.70196
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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": 16.487,
"posY": 1.786,
"posZ": -16.111,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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": "62c3f3",
"Name": "Figurine_Custom",
"Transform": {
"posX": 11.352,
"posY": 3.569,
"posZ": -9.348,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Lily Chen (Quadwield)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632852099/C6688E9A7DCB0639E5EA9A94A933117BE3D91406/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632852164/122AAC50A71B7D18F294A9BD89CD7ADCD4137BEC/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.04929137,
"posY": 1.05605388,
"posZ": -6.07517147,
"rotX": -1.28731717E-05,
"rotY": -0.00369770988,
"rotZ": -7.737283E-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.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/1840305815632852747/E5EE8542C7B2AF711792A707E05B4E897FF91A74/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632852799/B987558D827908D8E682E56B4E375FB80114B4C9/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "dc366b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 0.939,
"posY": 3.14,
"posZ": -6.599,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 359.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.34,
"posY": 3.123,
"posZ": -6.589,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Sister \"of Battle\" Mary",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.186,
"posY": 3.123,
"posZ": -6.705,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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": 14.134,
"posY": 2.868,
"posZ": 2.761,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "\"Ashcan\" Pete",
"Description": "Duke has been Sacrificed",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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": "84b0e7",
"Name": "Figurine_Custom",
"Transform": {
"posX": 7.535,
"posY": 3.13,
"posZ": 1.318,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Norman Withers",
"Description": "Novella",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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": "ffb761",
"Name": "Bag",
"Transform": {
"posX": 6.274,
"posY": 1.786,
"posZ": -11.9,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.09,
"posY": 3.134,
"posZ": -5.438,
"rotX": 1.0,
"rotY": 0.0,
"rotZ": 359.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Duke",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.241,
"posY": 3.14,
"posZ": -5.542,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 359.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Jacqueline Canine",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.402,
"posY": 3.143,
"posZ": -5.519,
"rotX": 0.0,
"rotY": 181.0,
"rotZ": 359.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "\"Skids\" O'Droole",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.477,
"posY": 3.11,
"posZ": -5.029,
"rotX": 2.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Kate Winthpup",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.561,
"posY": 3.141,
"posZ": -5.615,
"rotX": 359.0,
"rotY": 90.0,
"rotZ": 1.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Bark Harrigan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.145,
"posY": 3.239,
"posZ": -16.331,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.943,
"posY": 3.136,
"posZ": -9.118,
"rotX": 1.0,
"rotY": 255.0,
"rotZ": 359.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Penny White",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.456,
"posY": 3.14,
"posZ": -9.586,
"rotX": 359.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Valentino Rivas",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.766,
"posY": 3.116,
"posZ": -9.727,
"rotX": 357.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Jerome Davids",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.245,
"posY": 2.94,
"posZ": -8.384,
"rotX": 1.0,
"rotY": 359.0,
"rotZ": 1.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Gavriella Mizrah",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.849,
"posY": 3.273,
"posZ": -16.44,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.12,
"posY": 2.462,
"posZ": -5.572,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.362,
"posY": 2.737,
"posZ": -7.039,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.735,
"posY": 3.142,
"posZ": -6.967,
"rotX": 0.0,
"rotY": 135.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.649,
"posY": 3.142,
"posZ": -6.911,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.917,
"posY": 3.137,
"posZ": -7.03,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 1.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.192,
"posY": 3.105,
"posZ": -6.389,
"rotX": 1.0,
"rotY": 0.0,
"rotZ": 1.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Body of a Yithian",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.138,
"posY": 2.224,
"posZ": -10.16,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Gloria Goldberg",
"Description": "Novella",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": "d5f368",
"Name": "Figurine_Custom",
"Transform": {
"posX": 16.571,
"posY": 2.109,
"posZ": -14.587,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.83,
"scaleY": 0.83,
"scaleZ": 0.83
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632829647/900F45FD95C2893461BCAA1572DE0E7EA16ABE19/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632829693/2DA5CDF37EAB1E351A88995270B9A313DAEA59CE/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c646b5",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.92249012,
"posY": 1.09781313,
"posZ": -2.00294733,
"rotX": -1.88514023E-05,
"rotY": 0.00833301,
"rotZ": -4.36505143E-05,
"scaleX": 0.8250001,
"scaleY": 0.8250001,
"scaleZ": 0.8250001
},
"Nickname": "Summoned Servitor",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.170584679,
"g": 0.0,
"b": 0.329268128
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632829036/6D4D65B59894195F8047FA6F37F7379A67CDD4E4/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632829093/FBA3DF6AD2DF21A559274FB770ADB98A0368EE0D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "409e5c",
"Name": "Figurine_Custom",
"Transform": {
"posX": 13.213,
"posY": 2.067,
"posZ": -14.178,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Charlie Kane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1814399894374997017/BC85365BA8B6FD488A31D0453F5B589E9FBB33A3/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894374997063/8267261868DBD6C630FAD36CE43AC9F594A23328/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.88261676,
"posY": 1.05605388,
"posZ": -7.99951649,
"rotX": 0.000172622473,
"rotY": 0.04173309,
"rotZ": -0.000115265633,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Charlie Kane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.162020534,
"g": 0.162020534,
"b": 0.162020534
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375044875/74403D42281F3B6F52977E2A78B3429284D14162/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375044931/1F649E841492469182395800CD8522A7A8F688DF/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "821043",
"Name": "Figurine_Custom",
"Transform": {
"posX": 23.71,
"posY": 2.067,
"posZ": -11.306,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Darrell Simmons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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/1840305815632805644/FA91A9D835F60BCCAD90EE43F432EEFCB812F1BE/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632805684/E19E42FA0F5C66C9AE0C531B8502F0856EA77CB4/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "6b2246",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.66304708,
"posY": 1.05605173,
"posZ": -3.49813342,
"rotX": -8.87667E-05,
"rotY": 0.0107405549,
"rotZ": -1.18543749E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Darrell Simmons",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.329268128,
"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/1840305815632806149/6DE55CD4B35E67EDD1EA12561615C29D7528C1EC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632806197/159CC606BB4D245E2432664D0C7BB86D7B3180E5/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "347366",
"Name": "Figurine_Custom",
"Transform": {
"posX": 19.26,
"posY": 2.067,
"posZ": -15.304,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Amina Zidane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632804057/78FE712C27FC15638C93ED390EA244DC24AD9D80/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632804138/3C7683C5652FF748E998DA47244ECD565E47A9F0/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "c8a797",
"Name": "Figurine_Custom",
"Transform": {
"posX": -2.91043854,
"posY": 1.05605221,
"posZ": -3.427179,
"rotX": -0.000122606551,
"rotY": 359.8301,
"rotZ": -1.3014E-05,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Amina Zidane",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.170584679,
"g": 0.0,
"b": 0.329268128
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632804852/FC13F19097AB6B8CFF69D41F181DF5FE3B171487/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632804895/36BF0E4DF393735062A1097E8B5DEF0CBFF7FE50/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "f90c73",
"Name": "Figurine_Custom",
"Transform": {
"posX": 16.442,
"posY": 2.067,
"posZ": -15.188,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Kymani Jones",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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/1840305815632712125/4C9C8B7E2D826AC3F667B25886A10E4E7C404D36/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632728920/BB862271FE472CB9A059930312C7E02014C926AA/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "d72b4f",
"Name": "Figurine_Custom",
"Transform": {
"posX": -4.205485,
"posY": 1.05605233,
"posZ": -3.2741313,
"rotX": -9.738026E-05,
"rotY": -0.00172003009,
"rotZ": -0.00011472436,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Kymani Jones",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.08509395,
"g": 0.210801154,
"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/1840305815632729866/6CAF10394017D1E413216A18C7AFB68E4BE4A22E/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632729904/030745C06892D3AE331E9B047F6202B3A834B89D/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "bc327b",
"Name": "Figurine_Custom",
"Transform": {
"posX": 13.056,
"posY": 2.067,
"posZ": -14.739,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Vincent Lee",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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/1840305815632778350/325286731544DD374EE07847A9446D2BC94EF1B9/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632778413/67439F129504FB1AA3A5D888DC4719FEBAF9892C/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "376b04",
"Name": "Figurine_Custom",
"Transform": {
"posX": -5.556041,
"posY": 1.05605245,
"posZ": -3.136945,
"rotX": -0.000110429712,
"rotY": 0.00694853,
"rotZ": -0.000125191262,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Vincent Lee",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.559233367,
"g": 0.251962036,
"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/1840305815632803055/AF8D8F383F92D298133EBA09A34753744E4EF548/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632803119/29423101B686F98DA4B7493746360CD42D3CE5C0/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "9b83f7",
"Name": "Figurine_Custom",
"Transform": {
"posX": 24.417,
"posY": 2.067,
"posZ": -10.598,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Carson Sinclair",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815627803889/F70AAF20DE0C636E8188C8ED3567D152BFE34FEF/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815627804095/14FB266940C7F4FA6C89D27D778171D8DC132E4B/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b49b1e",
"Name": "Figurine_Custom",
"Transform": {
"posX": -7.154865,
"posY": 1.05605257,
"posZ": -3.15310764,
"rotX": -0.000124932936,
"rotY": 0.109544486,
"rotZ": -0.000132667308,
"scaleX": 0.5750004,
"scaleY": 0.5750004,
"scaleZ": 0.5750004
},
"Nickname": "Carson Sinclair",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0107875289,
"b": 0.32578373
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632822371/481BF5F70A061B239975FA608D6FD6BFEE26D87D/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1840305815632822423/C4763118F4519CF03FB07EEC9E8D181987D818CF/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7ce9d9",
"Name": "Figurine_Custom",
"Transform": {
"posX": 9.343,
"posY": 2.067,
"posZ": -6.363,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Bob Jenkins",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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": 11.535,
"posY": 2.067,
"posZ": -2.921,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Lily Chen",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.857,
"posY": 2.067,
"posZ": -7.872,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Monterey Jack",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.732,
"posY": 2.678,
"posZ": -5.012,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Norman Withers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.168,
"posY": 2.067,
"posZ": -5.196,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Daniela Reyes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.789,
"posY": 2.067,
"posZ": -10.241,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Stella Clark",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.768,
"posY": 2.067,
"posZ": -9.959,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Jacqueline Fine",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.124,
"posY": 2.112,
"posZ": -7.966,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Winifred Habbamock",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.054,
"posY": 2.067,
"posZ": -8.127,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Harvey Walters",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.437,
"posY": 2.067,
"posZ": -7.523,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Nathaniel Cho",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.718,
"posY": 2.067,
"posZ": -7.328,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Silas Marsh",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.743,
"posY": 2.735,
"posZ": -4.874,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Dexter Drake",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.923,
"posY": 2.067,
"posZ": -4.616,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Trish Scarborough",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.084,
"posY": 2.067,
"posZ": -4.571,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Amanda Sharpe",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.971,
"posY": 2.067,
"posZ": -3.934,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Sister Mary",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.221,
"posY": 2.108,
"posZ": -9.515,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Patrice Hathaway",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.614,
"posY": 2.067,
"posZ": -9.75,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Luke Robinson",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.206,
"posY": 2.067,
"posZ": -9.638,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Tony Morgan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.73,
"posY": 2.067,
"posZ": -9.555,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Mandy Thompson",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.5,
"posY": 2.114,
"posZ": -7.323,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Tommy Muldoon",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.613,
"posY": 2.067,
"posZ": -7.518,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Marie Lambeau",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.263,
"posY": 2.067,
"posZ": -7.433,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Rita Young",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.084,
"posY": 2.067,
"posZ": -7.082,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Diana Stanley",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.619,
"posY": 2.258,
"posZ": -4.266,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Preston Fairmount",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.571,
"posY": 2.067,
"posZ": -4.393,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Joe Diamond",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.8,
"posY": 2.067,
"posZ": -4.619,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Carolyn Fern",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.844,
"posY": 2.067,
"posZ": -5.017,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Calvin Wright",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.605,
"posY": 2.843,
"posZ": 0.227,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Father Mateo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.672,
"posY": 2.067,
"posZ": -7.577,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Finn Edwards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.784,
"posY": 2.067,
"posZ": -0.276,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Ursula Downs",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.806,
"posY": 2.067,
"posZ": -7.253,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Leo Anderson",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": 6.549,
"posY": 2.067,
"posZ": -0.995,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Lola Hayes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.59408,
"g": 0.59408,
"b": 0.59408
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375141491/FC32B68CBC5AD09DB7347FDD68F6B398FB52F84A/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375141540/7C5FA11A32DB50D7C3288D7672AA72A753941813/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "b848a3",
"Name": "Figurine_Custom",
"Transform": {
"posX": -1.93965089,
"posY": 1.05605161,
"posZ": -1.30115461,
"rotX": 7.33440538E-05,
"rotY": 359.8577,
"rotZ": 3.12846E-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.162020475,
"g": 0.162020475,
"b": 0.162020475
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375156637/11194212FD04FF4B2AFAFB25AF915F288D768BEC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/1814399894375156686/CF8D3AAA42F6F3879C9C79C9E78A696592FE57BD/",
"ImageScalar": 1.0,
"WidthScale": 0.0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "26a0a1",
"Name": "Figurine_Custom",
"Transform": {
"posX": 1.985,
"posY": 2.067,
"posZ": -5.783,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "William Yorick",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.47,
"posY": 2.067,
"posZ": -5.728,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Akachi Onyele",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.353,
"posY": 2.067,
"posZ": -5.625,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Sefina Rousseau",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.898,
"posY": 2.067,
"posZ": -3.646,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Minh Thi Phan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.73,
"posY": 2.067,
"posZ": -3.996,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Mark Harrigan",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.191,
"posY": 2.067,
"posZ": -2.527,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "\"Ashcan\" Pete",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.419,
"posY": 2.067,
"posZ": -3.644,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Jim Culver",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.699,
"posY": 2.067,
"posZ": -1.237,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Jenny Barnes",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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.395,
"posY": 2.067,
"posZ": -1.549,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Rex Murphy",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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.422,
"posY": 2.067,
"posZ": -1.246,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Zoey Samaras",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": 18.214,
"posY": 2.067,
"posZ": 20.422,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Wendy Adams",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.58711,
"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.99075246,
"posY": 1.05605435,
"posZ": -11.0904865,
"rotX": -1.12616681E-05,
"rotY": 0.0209468454,
"rotZ": -6.328795E-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.329268247,
"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": 18.125,
"posY": 2.067,
"posZ": 17.111,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Agnes Baker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.33758,
"g": 0.0,
"b": 0.65331
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": 1.41371632,
"posY": 1.05605292,
"posZ": -10.7802191,
"rotX": -1.42807457E-05,
"rotY": 359.978119,
"rotZ": 0.0001414089,
"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.1705848,
"g": 0.0,
"b": 0.329268247
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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": 18.043,
"posY": 2.067,
"posZ": 18.03,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "\"Skids\" O'Toole",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.17436,
"g": 0.43031,
"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": -0.120323889,
"posY": 1.05605209,
"posZ": -10.5111914,
"rotX": 1.64129942E-05,
"rotY": 0.0260009225,
"rotZ": -2.237311E-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.08509406,
"g": 0.2108013,
"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": 17.642,
"posY": 2.067,
"posZ": 21.115,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Daisy Walker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.45725,
"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": 18.503,
"posY": 2.067,
"posZ": 21.057,
"rotX": 0.0,
"rotY": 0.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"Nickname": "Roland Banks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.04089,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": false,
"Snap": false,
"IgnoreFoW": false,
"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.32,
"posY": 3.899,
"posZ": -20.956,
"rotX": 0.0,
"rotY": 180.0,
"rotZ": 0.0,
"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.70588,
"g": 0.36652,
"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.447,
"posY": 3.599,
"posZ": -25.855,
"rotX": 0.0,
"rotY": 90.0,
"rotZ": 0.0,
"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": {
"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": ""
},
"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": ""
}
}
},
{
"GUID": "cecc3e",
"Name": "Custom_Assetbundle",
"Transform": {
"posX": 18.148,
"posY": 3.504,
"posZ": -26.634,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.58,
"scaleY": 0.58,
"scaleZ": 0.58
},
"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.18382,
"g": 0.18382,
"b": 0.18382
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"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\nfunction updateSave()\n saved_data = JSON.encode({pitch=pitch, distance=distance})\n self.script_state = saved_data\nend\n\n--Startup, loading memory\nfunction onload(saved_data)\n --Loads the tracking for if the game has started yet\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n pitch = loaded_data.pitch\n distance = loaded_data.distance\n else\n pitch = 45\n distance = 30\n end\n\n createInputs()\n createButtons()\nend\n\n--Activated by finishing writing in the input box, updates save info\nfunction input_entered(inputString, stillEditing , typeIndex)\n if stillEditing == false then\n --Check to avoid empty input strings\n if tonumber(inputString) == nil then inputString = 0 end\n --Update save data\n if typeIndex==0 then\n pitch = inputString\n else\n distance = inputString\n end\n updateSave()\n end\nend\n\n--Activated by button, the -5 -1 +1 +5 buttons\nfunction click_modify(amount, typeIndex)\n if typeIndex==0 then\n pitch = pitch + amount\n self.editInput({index=typeIndex, value=pitch})\n else\n distance = distance + amount\n self.editInput({index=typeIndex, value=distance})\n end\n updateSave()\nend\n\n--Activated by button, uses the data to move the camera\nfunction click_setCamera(_, color)\n --Check if there is another object to use instead of self\n local targetObj = self\n local nameGUID = string.sub(self.getName(), 1, 6)\n if getObjectFromGUID(nameGUID) ~= nil then\n targetObj = getObjectFromGUID(nameGUID)\n end\n\n --Check if there is an offset to use instead of 180\n local offsetY = 180\n local offsetString = string.sub(self.getName(), 7)\n if tonumber(string.match(offsetString, \"%d+\")) ~= nil then\n offsetY = tonumber(string.match(offsetString, \"%d+\"))\n end\n\n --Move camera into position around object\n local pos = targetObj.getPosition()\n local rot = targetObj.getRotation()\n rot.y = rot.y + offsetY\n Player[color].lookAt({position=pos, pitch=pitch, yaw=rot.y, distance=distance})\n\n local objectList = getObjects()\n local AHLCGNavTile = nil\n\n for i,v in ipairs(objectList) do\n if v.getName() == 'Navigation Overlay Tile' then\n AHLCGNavTile = v\n break\n end\n end\n\n-- local AHLCGNavTile = getObjectFromGUID(\"0ffbc5\")\n if AHLCGNavTile then\n AHLCGNavTile.call('updateEditCamera', {pos, pitch, rot.y, distance})\n end\nend\n\n\n\n\n--Button/Input creation\n\n\n\n--Text boxes for number input\nfunction createInputs()\n local funcName = \"inputFuncNamePitch\"\n local func = function(_,_,x,z) input_entered(x,z,0) end\n self.setVar(funcName, func)\n self.createInput({\n input_function=funcName, function_owner=self, label=\"input\",\n alignment=2, position={-3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400,\n font_size=400, color={57/255,46/255,40/255},\n font_color={1,1,1}, value=pitch,\n validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name),\n })\n local funcName = \"inputFuncNameDistance\"\n local func = function(_,_,x,z) input_entered(x,z,1) end\n self.setVar(funcName, func)\n self.createInput({\n input_function=funcName, function_owner=self, label=\"input\",\n alignment=4, position={3.4,0.35,-0.21}, rotation={0,0,0}, height=420, width=1400,\n font_size=400, color={57/255,46/255,40/255},\n font_color={1,1,1}, value=distance,\n validation=3 -- int (1 = None, 2 = Integer, 3 = Float, 4 = Alphanumeric, 5 = Username, 6 = Name),\n })\nend\n\n--Center button and -5 - +5 buttons\nfunction createButtons()\n self.createButton({\n click_function=\"click_setCamera\", function_owner=self,\n position={0,0.4,0}, height=900, width=900, color={1,1,1,0},\n tooltip=\"Set camera to this angle\"\n })\n\n for i, ref in ipairs(ref_modifyPitchButtons) do\n local funcName = \"pitchModifyFunction_\"..i\n self.setVar(funcName, ref.func)\n local pos = {-3.4+ref.offset,0.3,0.6}\n self.createButton({\n click_function=funcName, function_owner=self,\n position=pos, height=240, width=320, color={1,1,1,0}\n })\n end\n\n for i, ref in ipairs(ref_modifyDistanceButtons) do\n local funcName = \"distanceModifyFunction_\"..i\n self.setVar(funcName, ref.func)\n local pos = {3.4+ref.offset,0.3,0.6}\n self.createButton({\n click_function=funcName, function_owner=self,\n position=pos, height=240, width=320, color={1,1,1,0}\n })\n end\nend\n\n--Data tables used in button creation\n\nref_modifyPitchButtons = {\n {offset=-0.37, func=function() click_modify(-1, 0) end},\n {offset=-1.11, func=function() click_modify(-5, 0) end},\n {offset=0.37, func=function() click_modify(1, 0) end},\n {offset=1.11, func=function() click_modify(5, 0) end},\n}\n\nref_modifyDistanceButtons = {\n {offset=-0.37, func=function() click_modify(-1, 1) end},\n {offset=-1.11, func=function() click_modify(-5, 1) end},\n {offset=0.37, func=function() click_modify(1, 1) end},\n {offset=1.11, func=function() click_modify(5, 1) end},\n}",
"LuaScriptState": "{\"distance\":15,\"pitch\":75}",
"XmlUI": ""
},
{
"GUID": "0ffbc5",
"Name": "Custom_Tile",
"Transform": {
"posX": 25.962,
"posY": 3.519,
"posZ": -18.624,
"rotX": 1.0,
"rotY": 270.0,
"rotZ": 0.0,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"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\n\nfunction onLoad(saved_data)\n self.createButton({\n label=\"\",\n tooltip=\"Display full overlay\",\n click_function=\"displayFull\",\n function_owner=self,\n position={0.0,0.1,-0.57},\n height=70,\n width=800,\n scale={x=1, y=1, z=1},\n color={1,0,0,0}\n })\n self.createButton({\n label=\"\",\n tooltip=\"Display only play area\",\n click_function=\"displayPlayArea\",\n function_owner=self,\n position={0.0,0.1,-0.30},\n height=70,\n width=800,\n scale={x=1, y=1, z=1},\n color={1,0,0,0}\n })\n self.createButton({\n label=\"\",\n tooltip=\"Close overlay\",\n click_function=\"closeOverlay\",\n function_owner=self,\n position={0.0,0.1,-0.03},\n height=70,\n width=800,\n scale={x=1, y=1, z=1},\n color={1,0,0,0}\n })\n self.createButton({\n label=\"\",\n tooltip=\"Modify a camera position\",\n click_function=\"beginSetCamera\",\n function_owner=self,\n position={0.0,0.1,0.37},\n height=70,\n width=800,\n scale={x=1, y=1, z=1},\n color={1,0,0,0}\n })\n self.createButton({\n label=\"\",\n tooltip=\"Reset camera positions to default\",\n click_function=\"resetCameras\",\n function_owner=self,\n position={0.0,0.1,0.77},\n height=70,\n width=800,\n scale={x=1, y=1, z=1},\n color={1,0,0,0}\n })\n\n defaultCameraParams = {\n {position={-1.626, -2.5, -0.064}, pitch=62.964, yaw=90.000, distance=17.844}, -- 1. ActAgenda\n {position={-27.822, -2.5, 0.424}, pitch=75.823, yaw=90.000, distance=-1.000}, -- 2. Map\n-- {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=19.858}, -- 3. Green playmat\n {position={-31.592, -2.5, 26.392}, pitch=74.238, yaw=180.000, distance=-1.000}, -- 3. Green playmat\n {position={-55.026, -2.5, 12.052}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 4. White playmat\n {position={-55.026, -2.5, -11.479}, pitch=74.238, yaw=90.000, distance=-1.000}, -- 5. Orange playmat\n {position={-31.592, -2.5, -26.392}, pitch=74.238, yaw=0.000, distance=-1.000}, -- 6. Red playmat\n {position={-2.940, -2.5, 25.160}, pitch=73.556, yaw=90.000, distance=20.146}, -- 7. Victory / SetAside\n {position={-58.216, -2.5, -71.288}, pitch=76.430, yaw=90.000, distance=20.000}, -- 8. Deckbuilder\n {position={46.368, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=46.255}, -- 9. Campaigns\n {position={13.875, -2.5, 0.328}, pitch=69.491, yaw=90.000, distance=37.962}, -- 10. Scenarios\n {position={51.940, -2.5, 64.476}, pitch=76.430, yaw=90.000, distance=48.102}, -- 11. Level 0\n {position={51.302, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=48.102}, -- 12. Upgraded\n {position={-27.788, -2.5, 74.662}, pitch=76.430, yaw=90.000, distance=30.616}, -- 13. Weaknesses\n {position={-61.090, -2.5, 70.762}, pitch=76.430, yaw=90.000, distance=34.188}, -- 14. Rules\n {position={-18.547, -2.5, -73.514}, pitch=76.430, yaw=90.000, distance=42.249}, -- 15. Investigators\n {position={-2.144, -2.5, -26.900}, pitch=73.556, yaw=90.000, distance=20.146}, -- 16. Log\n {position={-45.000, -2.5, -0.228}, pitch=73.556, yaw=90.000, distance=12.000} -- 17. BlessCurse\n }\n\n fullButtonData = {\n { id = \"1\", width = \"84\", height = \"38\", offsetX = \"1\", offsetY = \"-9\" },\n { id = \"2\", width = \"78\", height = \"50\", offsetX = \"1\", offsetY = \"-59\" },\n { id = \"3\", width = \"36\", height = \"70\", offsetX = \"-62\", offsetY = \"-70\" },\n { id = \"4\", width = \"70\", height = \"40\", offsetX = \"-36\", offsetY = \"-130\" },\n { id = \"5\", width = \"70\", height = \"40\", offsetX = \"39\", offsetY = \"-130\" },\n { id = \"6\", width = \"36\", height = \"70\", offsetX = \"64\", offsetY = \"-70\" },\n { id = \"7\", width = \"36\", height = \"36\", offsetX = \"-63\", offsetY = \"-9\" },\n { id = \"8\", width = \"64\", height = \"64\", offsetX = \"153\", offsetY = \"-128\" },\n { id = \"9\", width = \"155\", height = \"70\", offsetX = \"2\", offsetY = \"120\" },\n { id = \"10\", width = \"155\", height = 70, offsetX = \"2\", offsetY = \"47\" },\n { id = \"11\", width = \"120\", height = \"100\", offsetX = \"-148\", offsetY = \"101\" },\n { id = \"12\", width = \"120\", height = \"100\", offsetX = \"150\", offsetY = \"101\" },\n { id = \"13\", width = \"120\", height = \"80\", offsetX = \"-150\", offsetY = \"-55\" },\n { id = \"14\", width = \"120\", height = \"60\", offsetX = \"-150\", offsetY = \"-132\" },\n { id = \"15\", width = \"110\", height = \"100\", offsetX = \"152\", offsetY = \"-42\" },\n { id = \"16\", width = \"36\", height = \"36\", offsetX = \"64\", offsetY = \"-9\" },\n { id = \"17\", width = \"44\", height = \"25\", offsetX = \"1\", offsetY = \"-97\" }\n }\n\n playButtonData = {\n { id = \"1\", width = \"84\", height = \"38\", offsetX = \"0\", offsetY = \"59\" },\n { id = \"2\", width = \"78\", height = \"50\", offsetX = \"0\", offsetY = \"9\" },\n { id = \"3\", width = \"36\", height = \"70\", offsetX = \"-62\", offsetY = \"-1\" },\n { id = \"4\", width = \"70\", height = \"40\", offsetX = \"-37\", offsetY = \"-61\" },\n { id = \"5\", width = \"70\", height = \"40\", offsetX = \"39\", offsetY = \"-61\" },\n { id = \"6\", width = \"36\", height = \"70\", offsetX = \"63\", offsetY = \"-2\" },\n { id = \"7\", width = \"36\", height = \"36\", offsetX = \"-64\", offsetY = \"59\" },\n { id = \"16\", width = \"36\", height = \"36\", offsetX = \"63\", offsetY = \"59\" },\n { id = \"17\", width = \"44\", height = \"25\", offsetX = \"0\", offsetY = \"-28\" }\n }\n\n playermatData = {\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 },\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 },\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 },\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 }\n }\n\n editing = false\n selectedEditButton = -1\n\n editPos = {0, 0, 0}\n editPitch = 0\n editYaw = 0\n editDistance = 0\n\n if saved_data ~= \"\" then\n local loaded_data = JSON.decode(saved_data)\n\n cameraParams = loaded_data.cameras\n fullVisibility = loaded_data.fullVis\n playVisibility = loaded_data.playVis\n\n resetOverlay()\n else\n cameraParams = {\n Green = {},\n White = {},\n Orange = {},\n Red = {}\n }\n\n for iv, v in pairs({'Green', 'White', 'Orange', 'Red'}) do\n cameraParams[v] = {}\n\n for i = 1,17 do\n cameraParams[v][i] = {}\n\n cameraParams[v][i].position = defaultCameraParams[i].position\n cameraParams[v][i].pitch = defaultCameraParams[i].pitch\n cameraParams[v][i].yaw = defaultCameraParams[i].yaw\n cameraParams[v][i].distance = defaultCameraParams[i].distance\n end\n end\n\n fullVisibility = {\n Green = false,\n White = false,\n Orange = false,\n Red = false\n }\n\n playVisibility = {\n Green = false,\n White = false,\n Orange = false,\n Red = false\n }\n end\nend\n\nfunction onSave()\n return JSON.encode({\n cameras = cameraParams,\n fullVis = fullVisibility,\n playVis = playVisibility\n })\n\n-- return ''\nend\n\nfunction displayFull(object, color)\n local playerCount = getPlayerCount()\n local colors\n if playerCount == 1 then\n colors = { 'Green', 'White', 'Orange', 'Red' }\n else\n colors = { color }\n end\n\n for i, v in ipairs(colors) do\n fullVisibility[v] = true\n playVisibility[v] = false\n end\n\n resetOverlay()\nend\n\nfunction displayPlayArea(object, color)\n local playerCount = getPlayerCount()\n local colors\n if playerCount == 1 then\n colors = { 'Green', 'White', 'Orange', 'Red' }\n else\n colors = { color }\n end\n\n for i, v in ipairs(colors) do\n fullVisibility[v] = false\n playVisibility[v] = true\n end\n\n resetOverlay()\nend\n\nfunction resetCameras(object, color)\n local playerCount = getPlayerCount()\n local colors\n\n if playerCount == 1 then\n colors = { 'Green', 'White', 'Orange', 'Red' }\n else\n colors = { color }\n end\n\n for iv, v in ipairs(colors) do\n for i = 1,17 do\n cameraParams[v][i].position = defaultCameraParams[i].position\n cameraParams[v][i].pitch = defaultCameraParams[i].pitch\n cameraParams[v][i].yaw = defaultCameraParams[i].yaw\n cameraParams[v][i].distance = defaultCameraParams[i].distance\n end\n end\nend\n\nfunction closeOverlay(object, color)\n fullVisibility[color] = false\n playVisibility[color] = false\n\n resetOverlay()\nend\n\nfunction resetOverlay()\n local guid = self.getGUID()\n local color\n local panel\n\n local existingXml = UI.getXml()\n local openingXml = ''\n\n -- try to only remove our panels\n for p = 1,2 do\n i, j = string.find(existingXml, '\" }, Priority.DEBUG)\n else\n debugPrint(table.concat { k, \": \", tostring(v) }, Priority.DEBUG)\n end\n end\n debugPrint(\"\", Priority.DEBUG)\n\n -- Initialize deck slot table and perform common transformations. The order\n -- of these should not be changed, as later steps may act on cards added in\n -- each. For example, a random weakness or investigator may have bonded\n -- cards or taboo entries, and should be present\n local slots = deck.slots\n maybeDrawRandomWeakness(slots, playerColor, configuration)\n maybeAddInvestigatorCards(deck, slots)\n maybeAddCustomizeUpgradeSheets(slots, configuration)\n maybeAddSummonedServitor(slots)\n maybeAddOnTheMend(slots)\n extractBondedCards(slots, configuration)\n checkTaboos(deck.taboo_id, slots, playerColor, configuration)\n\n local commandManager = getObjectFromGUID(configuration.command_manager_guid)\n\n ---@type ArkhamImport_CommandManager_InitializationArguments\n local parameters = {\n configuration = configuration,\n description = deck.description_md,\n }\n\n ---@type ArkhamImport_CommandManager_InitializationResults\n local results = commandManager:call(\"initialize\", parameters)\n\n if not results.is_successful then\n debugPrint(results.error_message, Priority.ERROR)\n return\n end\n\n -- get upgrades for customizable cards\n local meta = deck.meta\n local customizations = {}\n if meta then customizations = JSON.decode(deck.meta) end\n\n loadCards(slots, deck.investigator_code, customizations, playerColor, commandManager,\n configuration, results.configuration)\nend\n\n-- Checks to see if the slot list includes the random weakness ID. If it does,\n-- removes it from the deck and replaces it with the ID of a random basic weakness provided by the all cards bag\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\n---@param playerColor: Color name of the player this deck is being loaded for. Used for broadcast if a weakness is added.\n---@param configuration: The API configuration object\nfunction maybeDrawRandomWeakness(slots, playerColor, configuration)\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n local hasRandomWeakness = false\n for cardId, cardCount in pairs(slots) do\n if cardId == RANDOM_WEAKNESS_ID then\n hasRandomWeakness = true\n break\n end\n end\n if hasRandomWeakness then\n local weaknessId = allCardsBag.call(\"getRandomWeaknessId\")\n slots[weaknessId] = 1\n slots[RANDOM_WEAKNESS_ID] = nil\n debugPrint(\"Random basic weakness added to deck\", Priority.INFO, playerColor)\n end\nend\n\n-- If investigator cards should be loaded, add both the investigator (XXXXX) and minicard (XXXXX-m) slots with one copy each\n---@param deck: The processed ArkhamDB deck response\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\nfunction maybeAddInvestigatorCards(deck, slots)\n if getUiState().investigators then\n local investigatorId = deck.investigator_code\n slots[investigatorId .. \"-m\"] = 1\n local deckMeta = JSON.decode(deck.meta)\n local parallelFront = deckMeta ~= nil and deckMeta.alternate_front ~= nil and deckMeta.alternate_front ~= \"\"\n local parallelBack = deckMeta ~= nil and deckMeta.alternate_back ~= nil and deckMeta.alternate_back ~= \"\"\n if parallelFront and parallelBack then\n investigatorId = investigatorId .. \"-p\"\n elseif parallelFront then\n\n local alternateNum = tonumber(deckMeta.alternate_front)\n if alternateNum >= 01501 and alternateNum <= 01506 then\n investigatorId = investigatorId .. \"-r\"\n else\n investigatorId = investigatorId .. \"-pf\"\n end\n elseif parallelBack then\n investigatorId = investigatorId .. \"-pb\"\n end\n slots[investigatorId] = 1\n end\nend\n\n-- Process the card list looking for the customizable cards, and add their upgrade sheets if needed\n---@param slots: The slot list for cards in this deck. Table key is the cardId, value is the number\n-- of those cards which will be spawned\nfunction maybeAddCustomizeUpgradeSheets(slots, configuration)\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n for cardId, _ in pairs(slots) do\n -- upgrade sheets for customizable cards\n local upgradesheet = allCardsBag.call(\"getCardById\", { id = cardId .. \"-c\" })\n if upgradesheet ~= nil then\n slots[cardId .. \"-c\"] = 1\n end\n end\nend\n\n-- Process the card list looking for the Summoned Servitor, and add its minicard to the list if\n-- needed\n---@param slots: The slot list for cards in this deck. Table key is the cardId, value is the number\n-- of those cards which will be spawned\nfunction maybeAddSummonedServitor(slots)\n if slots[\"09080\"] ~= nil then\n slots[\"09080-m\"] = 1\n end\nend\n\n-- On the Mend should have 1-per-investigator copies set aside, but ArkhamDB always sends 1. Update\n-- the count based on the investigator count\n---@param slots: The slot list for cards in this deck. Table key is the cardId, value is the number\n-- of those cards which will be spawned\nfunction maybeAddOnTheMend(slots)\n if slots[\"09006\"] ~= nil then\n local playArea = getObjectFromGUID(PLAY_AREA_GUID)\n if playArea ~= nil then\n slots[\"09006\"] = playArea.call(\"getInvestigatorCount\")\n end\n end\nend\n\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.\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\n---@param configuration: The API configuration object\nfunction extractBondedCards(slots, configuration)\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n -- Create a list of bonded cards first so we don't modify slots while iterating\n local bondedCards = {}\n for cardId, cardCount in pairs(slots) do\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\n if (card ~= nil and card.metadata.bonded ~= nil) then\n for _, bond in ipairs(card.metadata.bonded) do\n bondedCards[bond.id] = bond.count\n -- We need to know which cards are bonded to determine their position, remember them\n bondedList[bond.id] = true\n end\n end\n end\n -- Add any bonded cards to the main slots list\n for bondedId, bondedCount in pairs(bondedCards) do\n slots[bondedId] = bondedCount\n end\nend\n\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\")\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\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\nfunction checkTaboos(tabooId, slots, playerColor, configuration)\n if tabooId then\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n for cardId, _ in pairs(tabooList[tabooId].cards) do\n if slots[cardId] ~= nil then\n -- Make sure there's a taboo version of the card before we replace it\n -- SCED only maintains the most recent taboo cards. If a deck is using\n -- an older taboo list it's possible the card isn't a taboo any more\n local tabooCard = allCardsBag.call(\"getCardById\", { id = cardId .. \"-t\" })\n if tabooCard == nil then\n local basicCard = allCardsBag.call(\"getCardById\", { id = cardId })\n debugPrint(\"Taboo version for \" .. basicCard.data.Nickname .. \" is not available. Using standard version\",\n Priority.WARNING, playerColor)\n else\n slots[cardId .. \"-t\"] = slots[cardId]\n slots[cardId] = nil\n end\n end\n end\n end\nend\n\n-- Returns the zone name where the specified card should be placed, based on its metadata.\n---@param cardMetadata: Table of card metadata. Metadata fields type and permanent are required; all others are optional.\n---@return: Zone name such as \"Deck\", \"SetAside1\", etc. See Zones object documentation for a list of valid zones.\nfunction getDefaultCardZone(cardMetadata)\n if (cardMetadata.id == \"09080-m\") then -- Have to check the Servitor before other minicards\n return \"SetAside6\"\n elseif (cardMetadata.id == \"09006\") then -- On The Mend is set aside\n return \"SetAside2\"\n elseif cardMetadata.type == \"Investigator\" then\n return \"Investigator\"\n elseif cardMetadata.type == \"Minicard\" then\n return \"Minicard\"\n elseif cardMetadata.type == \"UpgradeSheet\" then\n return \"SetAside4\"\n elseif cardMetadata.startsInPlay then\n return \"BlankTop\"\n elseif cardMetadata.permanent then\n return \"SetAside1\"\n elseif bondedList[cardMetadata.id] then\n return \"SetAside2\"\n -- SetAside3 is used for Ancestral Knowledge / Underworld Market\n else\n return \"Deck\"\n end\nend\n\n-- Process the slot list, which defines the card Ids and counts of cards to load. Spawn those cards at the appropriate zones\n-- and report an error to the user if any could not be loaded.\n-- This method uses an encapsulated coroutine with yields to make the card spawning cleaner.\n--\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\n---@param investigatorId: String ArkhamDB ID (code) for this deck's investigator.\n-- Investigator cards should already be added to the slots list if they\n-- should be spawned, but this value is separate to check for special\n-- handling for certain investigators\n---@param customizations: ArkhamDB data for customizations on customizable cards\n---@param playerColor String Color name of the player mat to place this deck on (e.g. \"Red\")\n---@param configuration: Loader configuration object\nfunction loadCards(slots, investigatorId, customizations, playerColor, commandManager, configuration, command_config)\n function coinside()\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n local yPos = {}\n local cardsToSpawn = {}\n for cardId, cardCount in pairs(slots) do\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\n if card ~= nil then\n local cardZone = getDefaultCardZone(card.metadata)\n for i = 1, cardCount do\n table.insert(cardsToSpawn, { data = card.data, metadata = card.metadata, zone = cardZone })\n end\n\n slots[cardId] = 0\n end\n end\n\n -- TODO: Re-enable this later, as a command\n -- handleAltInvestigatorCard(cardsToSpawn, \"promo\", configuration)\n\n -- TODO: Process commands for the cardsToSpawn list\n\n -- These should probably be commands, once the command handler is updated\n handleAncestralKnowledge(cardsToSpawn)\n handleUnderworldMarket(cardsToSpawn, playerColor)\n handleHunchDeck(investigatorId, cardsToSpawn, playerColor)\n handleCustomizableUpgrades(cardsToSpawn, customizations)\n\n -- Split the card list into separate lists for each zone\n local zoneDecks = buildZoneLists(cardsToSpawn)\n -- Spawn the list for each zone\n for zone, zoneCards in pairs(zoneDecks) do\n local deckPos = Zones.getZonePosition(playerColor, zone)\n deckPos.y = 3\n\n local callback = nil\n -- If cards are spread too close together TTS groups them weirdly, selecting multiples\n -- when hovering over a single card. This distance is the minimum to avoid that\n local spreadDistance = 1.15\n if (zone == \"SetAside4\") then\n -- SetAside4 is reserved for customization cards, and we want them spread on the table\n -- so their checkboxes are visible\n if (playerColor == \"White\") then\n deckPos.z = deckPos.z + (#zoneCards - 1) * spreadDistance\n elseif (playerColor == \"Green\") then\n deckPos.x = deckPos.x + (#zoneCards - 1) * spreadDistance\n end\n callback = function(deck) deck.spread(spreadDistance) end\n elseif zone == \"Deck\" then\n callback = function(deck) deckSpawned(deck, playerColor) end\n end\n Spawner.spawnCards(\n zoneCards,\n deckPos,\n Zones.getDefaultCardRotation(playerColor, zone),\n true, -- Sort deck\n callback)\n\n coroutine.yield(0)\n end\n\n -- Look for any cards which haven't been loaded\n local hadError = false\n for cardId, remainingCount in pairs(slots) do\n if remainingCount > 0 then\n hadError = true\n local request = Request.start({\n configuration.api_uri,\n configuration.cards,\n cardId\n },\n function(result)\n local adbCardInfo = JSON.decode(fixUtf16String(result.text))\n local cardName = adbCardInfo.real_name\n if (cardName ~= nil) then\n if (adbCardInfo.xp ~= nil and adbCardInfo.xp > 0) then\n cardName = cardName .. \" (\" .. adbCardInfo.xp .. \")\"\n end\n debugPrint(\"Card not found: \" .. cardName .. \", ArkhamDB ID \" .. cardId, Priority.ERROR, playerColor)\n else\n debugPrint(\"Card not found in ArkhamDB, ID \" .. cardId, Priority.ERROR, playerColor)\n end\n end)\n end\n end\n if (not hadError) then\n debugPrint(\"Deck loaded successfully!\", Priority.INFO, playerColor)\n end\n return 1\n end\n\n startLuaCoroutine(self, \"coinside\")\nend\n\n-- Callback handler for the main deck spawning. Looks for cards which should start in hand, and\n-- draws them for the appropriate player.\n-- @param deck Callback-provided spawned deck object\n-- @param playerColor Color of the player to draw the cards to\nfunction deckSpawned(deck, playerColor)\n local handPos = Player[playerColor].getHandTransform(1).position -- Only one hand zone per player\n local deckCards = deck.getData().ContainedObjects\n -- Process in reverse order so taking cards out doesn't upset the indexing\n for i = #deckCards, 1, -1 do\n local cardMetadata = JSON.decode(deckCards[i].GMNotes) or { }\n if cardMetadata.startsInHand then\n deck.takeObject({ index = i - 1, position = handPos, flip = true, smooth = true})\n end\n end\nend\n\n-- Conver the Raven Quill's selections from card IDs to card names. This could be more elegant\n-- but the inputs are very static so we're using some brute force.\n-- @param An ArkhamDB string indicating the customization selections for The Raven's Quill. Should\n-- be either a single card ID or two separated by a ^ (e.g. XXXXX^YYYYY)\nfunction convertRavenQuillSelections(selectionString)\n if (string.len(selectionString) == 5) then\n return getCardName(selectionString)\n elseif (string.len(selectionString) == 11) then\n return getCardName(string.sub(selectionString, 1, 5)) .. \", \" .. getCardName(string.sub(selectionString, 7))\n end\nend\n\n-- Returns the simple name of a card given its ID. This will find the card and strip any trailing\n-- SCED-specific suffixes such as (Taboo) or (Level)\nfunction getCardName(cardId)\n local configuration = getConfiguration()\n local allCardsBag = getObjectFromGUID(configuration.card_bag_guid)\n local card = allCardsBag.call(\"getCardById\", { id = cardId })\n if (card ~= nil) then\n local name = card.data.Nickname\n if (string.find(name, \" %(\")) then\n return string.sub(name, 1, string.find(name, \" %(\") - 1)\n else\n return name\n end\n end\nend\n\n-- Split a single list of cards into a separate table of lists, keyed by the zone\n---@param cards: Table of {cardData, cardMetadata, zone}\n---@return: Table of {zoneName=card list}\nfunction buildZoneLists(cards)\n local zoneList = {}\n for _, card in ipairs(cards) do\n if zoneList[card.zone] == nil then\n zoneList[card.zone] = {}\n end\n table.insert(zoneList[card.zone], card)\n end\n\n return zoneList\nend\n\n-- Replace the investigator card and minicard with an alternate version. This\n-- will find the relevant cards and look for IDs with