SCED/content/curated/en/scenario_miskatonic_mouse.json

9253 lines
296 KiB
JSON
Raw Normal View History

2023-06-26 10:13:37 +02:00
{
"GUID": "6defb8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2498159,
"posY": 1.46560562,
"posZ": 3.986397,
"rotX": 359.920135,
"rotY": 269.999023,
"rotZ": 0.0168751944,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Miskatonic Mouse",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766119953/F8003A1B5AC39F2D2DABFF6D0AA2168CEC8BFA2C/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n
"LuaScriptState": "{\"ml\":{\"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}
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "070048",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2242088,
"posY": 2.87992573,
"posZ": -3.82993317,
"rotX": -0.00231676968,
"rotY": 179.99762,
"rotZ": 1.26457942,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "09ad8b",
"Name": "CardCustom",
"Transform": {
"posX": -36.77326,
"posY": 3.03648448,
"posZ": 7.570271,
"rotX": 358.734741,
"rotY": 269.9899,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Adventureland",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 474700,
"SidewaysCard": false,
"CustomDeck": {
"4747": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766603450/AB84466ABD5BB9B6E432603C314DE87DDE256579/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597724009/3680E102B50F45AE1B8B1C9C3A4880D62247E8CA/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d8274",
"Name": "Deck",
"Transform": {
"posX": -3.9277,
"posY": 1.78479993,
"posZ": 5.7572,
"rotX": 359.9197,
"rotY": 270.0125,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
578000,
578000,
577400,
577400,
577400,
470100,
470000,
577500,
469800,
474500,
474500,
474500,
469700,
469600,
469400,
577600,
577600,
577700,
577700,
577800,
577800,
577800,
476800,
476800,
476800,
577900
],
"CustomDeck": {
"5780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774960138251400271/70CC1A0075E3A9206DE36E742D0ED78825530F14/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5774": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766583352/E2335F3D47CC7E11583A0EAA43821BBF54F51B40/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597688104/CAB646F13A11B5728765674A563B03BD01C16F02/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597687169/B2AE61B27F688592D7B42FC3748920B6511E2CC6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5775": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766563327/F503DB911D5EA34041CFCDE157FFBC5F5CC3B8EF/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597683580/FA1DCFD8DA3A5D96C24981E89B9FF9E9DC5BA1ED/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4745": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766561411/E47ABC58D54D63B5B398AE6065ABD539BAFB842C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597682281/B41106960A354D1D5197533C51093B329D74A1F7/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597680904/734A43AA55D92FBD6CFBDD09329F7BF7EFB51AAD/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597678622/0B1863B18B8DA5FA8E26E0A6BAE26C12E501D55F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5776": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766598702/463E4295DA13B72D14955B38C444363A6B6DB796/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5777": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766595618/8CCFD3795F4FCDAFEFFD327BBEACCB19A2C8B600/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766579210/A6CA21877B0B19E3086929C96FD1BE3BF5B3440F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4768": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124317204/F1D32128C98153FA5A0DAD22B41AD336626E3BB6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"5779": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766569740/38D9A37A016766BF18AD14DC13A75A057E51B76C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "69b934",
"Name": "CardCustom",
"Transform": {
"posX": 10.0047789,
"posY": 1.48600388,
"posZ": 16.5603542,
"rotX": 359.920563,
"rotY": 269.97583,
"rotZ": 0.0142785069,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climbing Death Toll",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 578000,
"SidewaysCard": false,
"CustomDeck": {
"5780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774960138251400271/70CC1A0075E3A9206DE36E742D0ED78825530F14/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d455aa",
"Name": "CardCustom",
"Transform": {
"posX": 10.0048361,
"posY": 1.52658451,
"posZ": 16.56034,
"rotX": 359.913635,
"rotY": 269.97583,
"rotZ": 0.013629037,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climbing Death Toll",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 578000,
"SidewaysCard": false,
"CustomDeck": {
"5780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774960138251400271/70CC1A0075E3A9206DE36E742D0ED78825530F14/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f3bddd",
"Name": "CardCustom",
"Transform": {
"posX": -4.377176,
"posY": 0.9735824,
"posZ": -4.301878,
"rotX": 0.000221004972,
"rotY": 180.000046,
"rotZ": -0.00148294575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mounting Fatigue",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577400,
"SidewaysCard": false,
"CustomDeck": {
"4749": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766583352/E2335F3D47CC7E11583A0EAA43821BBF54F51B40/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "54d415",
"Name": "CardCustom",
"Transform": {
"posX": -4.392851,
"posY": 1.01518369,
"posZ": -4.657553,
"rotX": 0.006244659,
"rotY": 180.000046,
"rotZ": 359.9939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mounting Fatigue",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577400,
"SidewaysCard": false,
"CustomDeck": {
"4749": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766583352/E2335F3D47CC7E11583A0EAA43821BBF54F51B40/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f3bddd",
"Name": "CardCustom",
"Transform": {
"posX": -4.19701147,
"posY": 1.04923236,
"posZ": -4.55435753,
"rotX": 5.416391E-05,
"rotY": 180.000046,
"rotZ": -0.000447814382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mounting Fatigue",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577400,
"SidewaysCard": false,
"CustomDeck": {
"4749": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766583352/E2335F3D47CC7E11583A0EAA43821BBF54F51B40/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e68108",
"Name": "CardCustom",
"Transform": {
"posX": 6.11969471,
"posY": 1.34693146,
"posZ": -0.359915078,
"rotX": 0.0299664177,
"rotY": 179.998627,
"rotZ": 0.0212704241,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Big Drop",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 470100,
"SidewaysCard": false,
"CustomDeck": {
"4701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597688104/CAB646F13A11B5728765674A563B03BD01C16F02/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b4adf",
"Name": "CardCustom",
"Transform": {
"posX": 6.92296457,
"posY": 1.35570276,
"posZ": -0.263470948,
"rotX": 0.00177807512,
"rotY": 180.00119,
"rotZ": 359.961884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spike Trap",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 470000,
"SidewaysCard": false,
"CustomDeck": {
"4700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597687169/B2AE61B27F688592D7B42FC3748920B6511E2CC6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9fa28f",
"Name": "CardCustom",
"Transform": {
"posX": 6.359746,
"posY": 1.36449063,
"posZ": -0.5846833,
"rotX": 0.0009981944,
"rotY": 180.0,
"rotZ": 0.000208332916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "One Bad Pun After Another",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577500,
"SidewaysCard": false,
"CustomDeck": {
"4725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766563327/F503DB911D5EA34041CFCDE157FFBC5F5CC3B8EF/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0a8dc4",
"Name": "CardCustom",
"Transform": {
"posX": 6.60693359,
"posY": 1.37721622,
"posZ": -0.9069958,
"rotX": 359.956635,
"rotY": 180.009155,
"rotZ": 4.63244651E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mining Blast",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 469800,
"SidewaysCard": false,
"CustomDeck": {
"4698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597683580/FA1DCFD8DA3A5D96C24981E89B9FF9E9DC5BA1ED/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea2eb3",
"Name": "CardCustom",
"Transform": {
"posX": 6.25384331,
"posY": 1.31786168,
"posZ": 3.451891,
"rotX": -0.00449646544,
"rotY": 179.999481,
"rotZ": 0.009786558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stormtrooper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 474500,
"SidewaysCard": false,
"CustomDeck": {
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766561411/E47ABC58D54D63B5B398AE6065ABD539BAFB842C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ef01ee",
"Name": "CardCustom",
"Transform": {
"posX": 6.19886,
"posY": 1.26793838,
"posZ": 3.968976,
"rotX": 0.00172463118,
"rotY": 179.999771,
"rotZ": 0.00234379014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stormtrooper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 474500,
"SidewaysCard": false,
"CustomDeck": {
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766561411/E47ABC58D54D63B5B398AE6065ABD539BAFB842C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5d328",
"Name": "CardCustom",
"Transform": {
"posX": 6.511874,
"posY": 1.36963165,
"posZ": 4.44087839,
"rotX": 359.974762,
"rotY": 179.999512,
"rotZ": 0.0225921515,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stormtrooper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 474500,
"SidewaysCard": false,
"CustomDeck": {
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766561411/E47ABC58D54D63B5B398AE6065ABD539BAFB842C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e32fa4",
"Name": "CardCustom",
"Transform": {
"posX": 6.408374,
"posY": 1.41150475,
"posZ": -0.293484926,
"rotX": 0.0021707844,
"rotY": 179.998489,
"rotZ": 359.9373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emperor Zurg",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 469700,
"SidewaysCard": false,
"CustomDeck": {
"4697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597682281/B41106960A354D1D5197533C51093B329D74A1F7/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33907b",
"Name": "CardCustom",
"Transform": {
"posX": 6.34746552,
"posY": 1.42157054,
"posZ": -0.7622949,
"rotX": 359.954529,
"rotY": 179.999573,
"rotZ": 359.979034,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constance Hatchaway",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 469600,
"SidewaysCard": false,
"CustomDeck": {
"4696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597680904/734A43AA55D92FBD6CFBDD09329F7BF7EFB51AAD/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2e31b",
"Name": "CardCustom",
"Transform": {
"posX": 5.86975956,
"posY": 1.43397141,
"posZ": 0.07390707,
"rotX": 359.9541,
"rotY": 180.003647,
"rotZ": 359.974548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Captain Barbossa",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 469400,
"SidewaysCard": false,
"CustomDeck": {
"4694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597678622/0B1863B18B8DA5FA8E26E0A6BAE26C12E501D55F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5fc251",
"Name": "CardCustom",
"Transform": {
"posX": -13.0142994,
"posY": 0.973597,
"posZ": -7.98109674,
"rotX": 8.960451E-05,
"rotY": 180.000046,
"rotZ": -0.0005343934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shoved by the Crowds",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577600,
"SidewaysCard": false,
"CustomDeck": {
"4751": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766598702/463E4295DA13B72D14955B38C444363A6B6DB796/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c13240",
"Name": "CardCustom",
"Transform": {
"posX": -13.2797766,
"posY": 1.01524532,
"posZ": -7.643253,
"rotX": 0.00128536869,
"rotY": 180.000046,
"rotZ": -0.00261602155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shoved by the Crowds",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577600,
"SidewaysCard": false,
"CustomDeck": {
"4751": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766598702/463E4295DA13B72D14955B38C444363A6B6DB796/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "414746",
"Name": "CardCustom",
"Transform": {
"posX": -16.0517864,
"posY": 0.9735915,
"posZ": -7.37933,
"rotX": 0.00013955489,
"rotY": 180.000046,
"rotZ": -0.0008916536,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overflowing Queue Lines",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577700,
"SidewaysCard": false,
"CustomDeck": {
"4750": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766595618/8CCFD3795F4FCDAFEFFD327BBEACCB19A2C8B600/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2265c9",
"Name": "CardCustom",
"Transform": {
"posX": -16.15505,
"posY": 1.01524806,
"posZ": -7.140774,
"rotX": 0.00216149236,
"rotY": 180.000046,
"rotZ": -0.00191950833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overflowing Queue Lines",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577700,
"SidewaysCard": false,
"CustomDeck": {
"4750": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766595618/8CCFD3795F4FCDAFEFFD327BBEACCB19A2C8B600/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d01501",
"Name": "CardCustom",
"Transform": {
"posX": -16.41498,
"posY": 0.973599255,
"posZ": -3.56286359,
"rotX": 6.567577E-05,
"rotY": 180.000046,
"rotZ": -0.0003836933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Malign Melodies",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577800,
"SidewaysCard": false,
"CustomDeck": {
"4748": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766579210/A6CA21877B0B19E3086929C96FD1BE3BF5B3440F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4b872",
"Name": "CardCustom",
"Transform": {
"posX": -16.4263725,
"posY": 1.015275,
"posZ": -3.60004544,
"rotX": -0.000498078938,
"rotY": 180.000046,
"rotZ": -0.004613426,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Malign Melodies",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577800,
"SidewaysCard": false,
"CustomDeck": {
"4748": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766579210/A6CA21877B0B19E3086929C96FD1BE3BF5B3440F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d01501",
"Name": "CardCustom",
"Transform": {
"posX": -16.41996,
"posY": 1.04921818,
"posZ": -3.46941042,
"rotX": 0.000686379266,
"rotY": 180.000046,
"rotZ": -0.000322688953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Malign Melodies",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577800,
"SidewaysCard": false,
"CustomDeck": {
"4748": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766579210/A6CA21877B0B19E3086929C96FD1BE3BF5B3440F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "027d5e",
"Name": "CardCustom",
"Transform": {
"posX": -13.3032312,
"posY": 0.973548532,
"posZ": -3.573477,
"rotX": 0.000591263,
"rotY": 180.0,
"rotZ": -0.00377638219,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Churror Craving",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476800,
"SidewaysCard": false,
"CustomDeck": {
"4768": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124317204/F1D32128C98153FA5A0DAD22B41AD336626E3BB6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "057774",
"Name": "CardCustom",
"Transform": {
"posX": -13.0563869,
"posY": 1.011924,
"posZ": -3.18003273,
"rotX": 359.99176,
"rotY": 180.0,
"rotZ": 0.0009858973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Churror Craving",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476800,
"SidewaysCard": false,
"CustomDeck": {
"4768": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124317204/F1D32128C98153FA5A0DAD22B41AD336626E3BB6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "027d5e",
"Name": "CardCustom",
"Transform": {
"posX": -13.0563889,
"posY": 1.03928053,
"posZ": -3.180033,
"rotX": 0.0006775347,
"rotY": 180.0,
"rotZ": -0.00111572444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Churror Craving",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476800,
"SidewaysCard": false,
"CustomDeck": {
"4768": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124317204/F1D32128C98153FA5A0DAD22B41AD336626E3BB6/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a9eca9",
"Name": "CardCustom",
"Transform": {
"posX": -12.9375715,
"posY": 1.05886364,
"posZ": -3.65218043,
"rotX": -6.409025E-05,
"rotY": 180.000046,
"rotZ": -0.000351084134,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abominable Snowman",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 577900,
"SidewaysCard": false,
"CustomDeck": {
"4746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766569740/38D9A37A016766BF18AD14DC13A75A057E51B76C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1f45da",
"Name": "CardCustom",
"Transform": {
"posX": -3.9560008,
"posY": 1.59753942,
"posZ": -10.4412031,
"rotX": 359.919739,
"rotY": 269.981781,
"rotZ": 0.0168627277,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic Mouse",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 472300,
"SidewaysCard": false,
"CustomDeck": {
"4723": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597771926/83CFE3016008BCB70AB1A44E811B9A24FA974F59/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597772638/3CBEBE1F68D582709AFD94623F9880CA1B87DA08/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20323b",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.91194,
"posY": 2.95937634,
"posZ": 11.2227917,
"rotX": 359.1032,
"rotY": 224.987961,
"rotZ": 0.8797775,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "270525",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2244015,
"posY": 2.879218,
"posZ": 11.4601135,
"rotX": -0.0006037445,
"rotY": 179.956635,
"rotZ": 1.26238418,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2875cc",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.2158051,
"posY": 2.813083,
"posZ": 3.97495055,
"rotX": 359.108582,
"rotY": 315.0536,
"rotZ": 359.092346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2899d0",
"Name": "CardCustom",
"Transform": {
"posX": -36.77319,
"posY": 3.037302,
"posZ": -0.0297468044,
"rotX": 358.7343,
"rotY": 269.989624,
"rotZ": 179.998734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Main Street, U.S.A.",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 474600,
"SidewaysCard": false,
"CustomDeck": {
"4746": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766639618/84F4A5D8D5EA4906683B83BBD5852013233061D5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766641184/E4677732EADF224D18F83055756EA1CAD06B0544/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "319c65",
"Name": "Custom_PDF",
"Transform": {
"posX": -1.8848,
"posY": 1.4773,
"posZ": -23.1586,
"rotX": 359.9201,
"rotY": 269.9951,
"rotZ": 0.0169000048,
"scaleX": 1.76069951,
"scaleY": 1.0,
"scaleZ": 1.76069951
},
"Nickname": "Miskatonic Mouse Campaign Guide",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1774958417124241184/A1DD35CBFF486CC0F01B49C5130700310D3003E5/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b6978",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.478,
"posY": 2.95103621,
"posZ": -0.0187404733,
"rotX": 358.734558,
"rotY": 270.0161,
"rotZ": 359.97995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "3bc61d",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0083675,
"posY": 2.80853319,
"posZ": 0.07782325,
"rotX": 358.7345,
"rotY": 270.012482,
"rotZ": 359.987976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "3fe960",
"Name": "CardCustom",
"Transform": {
"posX": -30.2240238,
"posY": 2.89177227,
"posZ": 15.1899033,
"rotX": 358.736755,
"rotY": 269.997925,
"rotZ": 179.966354,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "New Orleans Square",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 474800,
"SidewaysCard": false,
"CustomDeck": {
"4748": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766643836/035715D1D0CFEB3DEFE8F777E098B1F7E82096AD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597729249/313ECF2C5826999A4B63B4980AC3EE4FC1777D13/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a973f",
"Name": "CardCustom",
"Transform": {
"posX": -23.6766968,
"posY": 2.74857759,
"posZ": 7.569881,
"rotX": 358.7346,
"rotY": 269.985352,
"rotZ": 179.999191,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Galaxy's Edge",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475100,
"SidewaysCard": false,
"CustomDeck": {
"4751": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766636112/23BAFE26F3AE919EE07AC88051EC936717DCA46B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597714037/13083092FBFD66594B40FAB4615F8AD81920E4F1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53a4a1",
"Name": "CardCustom",
"Transform": {
"posX": -17.1201019,
"posY": 2.6041193,
"posZ": -0.0301630124,
"rotX": 358.734161,
"rotY": 269.990723,
"rotZ": 179.997467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Toontown",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 473300,
"SidewaysCard": false,
"CustomDeck": {
"4733": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766648158/56F6C55E6208267B43672E3D7B454B8CC0A51B9C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597737373/723979C6019DA070ED8CB1DCC7EDCDBF914C329F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "60aa1e",
"Name": "Bag",
"Transform": {
"posX": -3.7979,
"posY": 1.4061,
"posZ": 14.9015,
"rotX": 359.9196,
"rotY": 270.0016,
"rotZ": 0.0169000048,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Remember you.... pins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3d8409",
"Name": "Custom_Token",
"Transform": {
"posX": -5.08311749,
"posY": 3.14180183,
"posZ": -16.1996975,
"rotX": 0.318763345,
"rotY": 179.996277,
"rotZ": 0.7944761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hid in the briar patch",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174516744/5B81DA84DCCE8111A79FA2E68581C33302074CEA/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f68cb",
"Name": "Custom_Token",
"Transform": {
"posX": -5.78428459,
"posY": 3.14371562,
"posZ": -15.9886713,
"rotX": 0.1458999,
"rotY": 179.999588,
"rotZ": 359.488251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Made the Kessel run",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174515602/469C9DDBCBDD1E278CD962C732DB32D05C08CDF4/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b123ac",
"Name": "Custom_Token",
"Transform": {
"posX": -4.92208958,
"posY": 3.13520432,
"posZ": -15.38721,
"rotX": 359.469,
"rotY": 179.998169,
"rotZ": 0.3982138,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Communed with the children",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174514615/A34112AD38F7B303CF8AA4D1D1256C3B1508A64B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d7bbfb",
"Name": "Custom_Token",
"Transform": {
"posX": -4.819063,
"posY": 3.13269377,
"posZ": -15.107089,
"rotX": 359.586426,
"rotY": 180.0242,
"rotZ": 0.524418354,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Took a taxi for a spin",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174512658/F57774791691420914B35F0C98E326C038FA7275/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "22d4d8",
"Name": "Custom_Token",
"Transform": {
"posX": -5.752038,
"posY": 3.135054,
"posZ": -15.3586254,
"rotX": 359.376129,
"rotY": 180.001465,
"rotZ": 359.731323,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Joined the resistance",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174511566/9DED83D588BF0243ACB1916FD03220F22545A03C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2edae",
"Name": "Custom_Token",
"Transform": {
"posX": -4.95874834,
"posY": 3.14023852,
"posZ": -16.1479511,
"rotX": 359.8984,
"rotY": 179.999329,
"rotZ": 0.762735546,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Visited the Grand Canyon and Primeval World",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174509163/CC2BDDD333F58A9D01D7A82C232F7438ACF89DC6/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "698715",
"Name": "Custom_Token",
"Transform": {
"posX": -5.664913,
"posY": 3.144117,
"posZ": -16.0701733,
"rotX": 359.790558,
"rotY": 180.000748,
"rotZ": 359.5937,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lived a pirate's life",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174507578/556514A355D494168B71DC989875CD424EE45326/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "806b1f",
"Name": "Custom_Token",
"Transform": {
"posX": -5.319633,
"posY": 3.14029837,
"posZ": -15.5554819,
"rotX": 359.5077,
"rotY": 179.9991,
"rotZ": 0.20291315,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Escaped the abominable snowman",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174506087/839DDF4BBB1EBA338ECF07E3BF82EF7628B9E51C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b7b35",
"Name": "Custom_Token",
"Transform": {
"posX": -5.479567,
"posY": 3.136796,
"posZ": -15.39055,
"rotX": 359.347534,
"rotY": 179.99968,
"rotZ": 359.99292,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cruised the rivers of the world",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174504924/6780F39B1301667F3E61845E18B2CC2C4F73500D/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac8f92",
"Name": "Custom_Token",
"Transform": {
"posX": -5.986614,
"posY": 3.13504553,
"posZ": -15.2963209,
"rotX": 359.486053,
"rotY": 180.0014,
"rotZ": 359.69162,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dodged the temple's traps",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174503302/3D4143690B98CF3A1950C797C5E82867516E89B1/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b993a",
"Name": "Custom_Token",
"Transform": {
"posX": -5.667731,
"posY": 3.12967634,
"posZ": -15.1300516,
"rotX": 359.1593,
"rotY": 180.001083,
"rotZ": 359.851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Socialized with grim grinning ghosts",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174471479/B8C95560437539E3BE59F6B40E65FEBE4FBB194B/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4af3af",
"Name": "Custom_Token",
"Transform": {
"posX": -5.841076,
"posY": 3.135496,
"posZ": -15.38263,
"rotX": 359.543732,
"rotY": 180.002533,
"rotZ": 359.4259,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sped through an active blasting site",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174470353/7686C81F769F29074FD872364C9489DE079655DA/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ca612e",
"Name": "Custom_Token",
"Transform": {
"posX": -9.144635,
"posY": 3.772961,
"posZ": 9.445185,
"rotX": 359.9261,
"rotY": 180.000473,
"rotZ": 359.2157,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Went to inifinity and beyond",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1774958062174465324/8BD9618157D27277BA200E51690A45D15EC3F78A/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.2,
"MergeDistancePixels": 15.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.04502,
"posY": 3.09593415,
"posZ": 0.0257965438,
"rotX": 358.735046,
"rotY": 270.0036,
"rotZ": 359.979919,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "776283",
"Name": "Custom_Tile",
"Transform": {
"posX": -34.0347137,
"posY": 2.963113,
"posZ": 3.602408,
"rotX": 0.8938738,
"rotY": 135.028381,
"rotZ": 0.8848837,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "83b3af",
"Name": "CardCustom",
"Transform": {
"posX": -30.2243862,
"posY": 2.89256239,
"posZ": 7.57004452,
"rotX": 358.7345,
"rotY": 269.990845,
"rotZ": 180.001251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frontierland",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 474900,
"SidewaysCard": false,
"CustomDeck": {
"4749": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766633630/632BB28D4DD5961922F9FA34F5DFCE9C2F0BCA9A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597712266/B4816B2E2763F3F1586F9E1072F072FCD2BAE483/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "970ac8",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6762428,
"posY": 2.735206,
"posZ": 3.86003113,
"rotX": -0.00161767937,
"rotY": 179.987778,
"rotZ": 1.26633227,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "971f55",
"Name": "Deck",
"Transform": {
"posX": -8.703278,
"posY": 1.72401929,
"posZ": 5.78855944,
"rotX": 359.9214,
"rotY": 269.996216,
"rotZ": 180.015869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
468600,
468500,
474300,
474400,
468200,
468100,
468000,
467900,
467800,
467700,
467600,
467500
],
"CustomDeck": {
"4686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597656155/7CF522B66865826C75C58FCC430DE08691B08EBE/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597655469/320169106F913E8BDABC7D1090D7EAAA72397C95/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4743": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766533113/7AD54E6A9D7A14EF2EFE82AEF3B1F67C1CA2B901/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4744": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766532459/9C00DAA3298074F8D05FEAA7ECE1C7619293099F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597652639/AD1CFA158C028D61A3D27B0E36155233B6EB3C9E/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597651452/2139FB740E170E5EC59EF7DBF6FED9740B982402/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4680": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597650244/86B883E6EA60965640692E88833782EE840A3A59/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597649575/A97C3E5119D073851E67DAF0D810E50D4B3FFA5B/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597648756/60C29545394393F5276CC4EC5BF46D8D72672C30/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597647827/46F4ED1175FAF7E433EFA36D6497229C1B25FF9E/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597647039/F08AB74D297693174661D2DACA6094C6D23336B0/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597645975/66012BC8AC2CD41FFFF5C46D7159917BF3BEA4B1/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "85de6b",
"Name": "CardCustom",
"Transform": {
"posX": 0.346645951,
"posY": 1.27615321,
"posZ": -5.95365763,
"rotX": 359.880646,
"rotY": 180.000259,
"rotZ": 359.869476,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Temple of the Forbidden Eye)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 468600,
"SidewaysCard": false,
"CustomDeck": {
"4686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597656155/7CF522B66865826C75C58FCC430DE08691B08EBE/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b63c0d",
"Name": "CardCustom",
"Transform": {
"posX": 0.308418185,
"posY": 1.33194089,
"posZ": -5.879841,
"rotX": 359.817,
"rotY": 179.9999,
"rotZ": 0.2716838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Splash Mountain)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 468500,
"SidewaysCard": false,
"CustomDeck": {
"4685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597655469/320169106F913E8BDABC7D1090D7EAAA72397C95/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "394bde",
"Name": "CardCustom",
"Transform": {
"posX": 0.375206351,
"posY": 1.55733013,
"posZ": -5.96388865,
"rotX": 4.98609161,
"rotY": 179.498566,
"rotZ": 355.175537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Smuggler's Run)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 474300,
"SidewaysCard": false,
"CustomDeck": {
"4725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766533113/7AD54E6A9D7A14EF2EFE82AEF3B1F67C1CA2B901/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09abdc",
"Name": "CardCustom",
"Transform": {
"posX": 0.2602698,
"posY": 1.34525478,
"posZ": -5.624257,
"rotX": 0.00100130821,
"rotY": 179.987366,
"rotZ": 0.00510797,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Rise of the Resistance)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 474400,
"SidewaysCard": false,
"CustomDeck": {
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766532459/9C00DAA3298074F8D05FEAA7ECE1C7619293099F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b9d01",
"Name": "CardCustom",
"Transform": {
"posX": 0.238327459,
"posY": 1.35261142,
"posZ": -6.07180548,
"rotX": 0.00368924346,
"rotY": 180.041473,
"rotZ": 0.0100092478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Pirates of the Caribbean)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 468200,
"SidewaysCard": false,
"CustomDeck": {
"4682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597652639/AD1CFA158C028D61A3D27B0E36155233B6EB3C9E/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a26488",
"Name": "CardCustom",
"Transform": {
"posX": -0.0170121565,
"posY": 1.3666122,
"posZ": -5.72769928,
"rotX": 0.03220002,
"rotY": 179.9568,
"rotZ": 0.07286297,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Matterhorn Bobsleds)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 468100,
"SidewaysCard": false,
"CustomDeck": {
"4681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597651452/2139FB740E170E5EC59EF7DBF6FED9740B982402/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ea396",
"Name": "CardCustom",
"Transform": {
"posX": -0.157650784,
"posY": 1.37553847,
"posZ": -5.54373837,
"rotX": 0.0147146368,
"rotY": 180.0148,
"rotZ": 359.945435,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Jungle Cruise)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 468000,
"SidewaysCard": false,
"CustomDeck": {
"4680": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597650244/86B883E6EA60965640692E88833782EE840A3A59/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0cbb9d",
"Name": "CardCustom",
"Transform": {
"posX": 0.424809933,
"posY": 1.38411593,
"posZ": -5.724697,
"rotX": -0.000851476332,
"rotY": 179.99498,
"rotZ": 0.0018522949,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (\"it's a small world\")",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467900,
"SidewaysCard": false,
"CustomDeck": {
"4679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597649575/A97C3E5119D073851E67DAF0D810E50D4B3FFA5B/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ccf2d",
"Name": "CardCustom",
"Transform": {
"posX": 0.219585538,
"posY": 1.39338052,
"posZ": -5.618264,
"rotX": 0.007824135,
"rotY": 179.966034,
"rotZ": 359.993561,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Haunted Mansion)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467800,
"SidewaysCard": false,
"CustomDeck": {
"4678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597648756/60C29545394393F5276CC4EC5BF46D8D72672C30/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e38b87",
"Name": "CardCustom",
"Transform": {
"posX": 0.1987494,
"posY": 1.40568829,
"posZ": -6.20688629,
"rotX": 0.0146702956,
"rotY": 179.990128,
"rotZ": -0.004689358,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Car Toon Spin)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467700,
"SidewaysCard": false,
"CustomDeck": {
"4677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597647827/46F4ED1175FAF7E433EFA36D6497229C1B25FF9E/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43d258",
"Name": "CardCustom",
"Transform": {
"posX": 0.127221808,
"posY": 1.41363144,
"posZ": -6.077751,
"rotX": -0.00135864154,
"rotY": 179.951584,
"rotZ": 359.944,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Big Thunder Mountain)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467600,
"SidewaysCard": false,
"CustomDeck": {
"4676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597647039/F08AB74D297693174661D2DACA6094C6D23336B0/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e89ba",
"Name": "CardCustom",
"Transform": {
"posX": 0.5883779,
"posY": 1.43635392,
"posZ": -5.824358,
"rotX": 359.463318,
"rotY": 179.834122,
"rotZ": 0.007291037,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childlike Excitement (Astro Blasters)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467500,
"SidewaysCard": false,
"CustomDeck": {
"4675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597645975/66012BC8AC2CD41FFFF5C46D7159917BF3BEA4B1/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9b26d0",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.3389416,
"posY": 2.66163778,
"posZ": -0.07447802,
"rotX": 358.734131,
"rotY": 270.0124,
"rotZ": -0.00171970634,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "9cd123",
"Name": "CardCustom",
"Transform": {
"posX": -23.676487,
"posY": 2.74811339,
"posZ": 15.189784,
"rotX": 358.735352,
"rotY": 269.9985,
"rotZ": 179.980484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Critter Country",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475000,
"SidewaysCard": false,
"CustomDeck": {
"4750": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766628240/D374F6104DA3C61E0C557DBEE881296A6EFD1793/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597708274/AE2C510EE21F60137ADFA6C24246EF303FA76F8D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa3d8a",
"Name": "Custom_Model",
"Transform": {
"posX": -9.356708,
"posY": 1.64423156,
"posZ": -0.657828033,
"rotX": 359.920074,
"rotY": 270.017548,
"rotZ": 0.0168047324,
"scaleX": 0.5000004,
"scaleY": 0.5000004,
"scaleZ": 0.5000004
},
"Nickname": "Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"Park Entrance\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Main Street, U.S.A.\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Park Entrance\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Hub\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Adventureland\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Frontierland\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"New Orleans Square\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Critter Country\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Galaxy's Edge\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Fantasyland\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Toontown\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Tomorrowland\": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "afed94",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.1752319,
"posY": 2.790653,
"posZ": -4.41181564,
"rotX": 359.1035,
"rotY": 224.993515,
"rotZ": 0.8945484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "b1d640",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2243633,
"posY": 2.8795104,
"posZ": 3.860101,
"rotX": -0.00255285157,
"rotY": 180.008118,
"rotZ": 1.25979066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ba391c",
"Name": "CardCustom",
"Transform": {
"posX": -23.6766033,
"posY": 2.74889135,
"posZ": -0.0301193725,
"rotX": 358.7343,
"rotY": 269.985229,
"rotZ": 179.998459,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fantasyland",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475200,
"SidewaysCard": false,
"CustomDeck": {
"4752": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766631267/B6C4B29252FFF4AAE9A509EEC853774C4E73F44F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597710414/6FFB737A3754F490CF6A82200A01948C045B9A87/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc1bcc",
"Name": "Deck",
"Transform": {
"posX": -2.7247,
"posY": 1.67559993,
"posZ": 0.3733,
"rotX": 359.9197,
"rotY": 269.9813,
"rotZ": 0.016900003,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
473100,
473000,
472900,
472800
],
"CustomDeck": {
"4731": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124271212/228236957E6601B00E7BD2E9B191F0F638443C11/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124271990/9CF7EE28775A989838D786028B55DA186265AF5C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4730": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124268796/18F0E437C8C41ABA5F01718FF46305BCDEC68BB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124269478/5A47C0540A4D1F4BED626DE8792D6ED724E00781/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124266075/A272F05ED9399EA6AEBC1C130F1D64D066A88EEC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124266689/D529143CD1C2A54E22AF465F58F6B8905DF18595/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124262851/2B99C697A6A19DBE8FE4234B4D25D03E6FE4D628/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124263449/A14B1FE1FBF4D5398478A17363955ADA57501F1E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "426d5d",
"Name": "CardCustom",
"Transform": {
"posX": -4.868943,
"posY": 0.973593652,
"posZ": 5.504856,
"rotX": 0.000123126025,
"rotY": 180.0,
"rotZ": -0.000385944324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 4",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"CardID": 473100,
"SidewaysCard": false,
"CustomDeck": {
"4731": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124271212/228236957E6601B00E7BD2E9B191F0F638443C11/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124271990/9CF7EE28775A989838D786028B55DA186265AF5C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f08a8b",
"Name": "CardCustom",
"Transform": {
"posX": -5.215529,
"posY": 1.01523721,
"posZ": 5.376013,
"rotX": -0.00189639872,
"rotY": 180.0,
"rotZ": -0.00129451591,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"CardID": 473000,
"SidewaysCard": false,
"CustomDeck": {
"4730": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124268796/18F0E437C8C41ABA5F01718FF46305BCDEC68BB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124269478/5A47C0540A4D1F4BED626DE8792D6ED724E00781/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f8032",
"Name": "CardCustom",
"Transform": {
"posX": -4.32342958,
"posY": 1.04923487,
"posZ": 5.323142,
"rotX": -1.07039732E-05,
"rotY": 180.0,
"rotZ": -0.0001822046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 472900,
"SidewaysCard": false,
"CustomDeck": {
"4729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124266075/A272F05ED9399EA6AEBC1C130F1D64D066A88EEC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124266689/D529143CD1C2A54E22AF465F58F6B8905DF18595/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e42dd",
"Name": "CardCustom",
"Transform": {
"posX": -4.656684,
"posY": 1.058862,
"posZ": 5.399044,
"rotX": -3.474289E-05,
"rotY": 180.0,
"rotZ": -0.000206633718,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"CardID": 472800,
"SidewaysCard": false,
"CustomDeck": {
"4728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124262851/2B99C697A6A19DBE8FE4234B4D25D03E6FE4D628/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124263449/A14B1FE1FBF4D5398478A17363955ADA57501F1E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "bfb766",
"Name": "Deck",
"Transform": {
"posX": -2.6886,
"posY": 1.6739,
"posZ": -5.0485,
"rotX": 359.9197,
"rotY": 269.9754,
"rotZ": 0.0169000085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
472700,
472600,
472500,
472400
],
"CustomDeck": {
"4727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124258142/3FA936D4643B9428E2B452BA1DCB275EE655F261/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124258814/649AA71064FD955EE640E5EC5129754EEA4CBA25/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124256357/57D5530E458250C1955ABD385E1221BA6DDB3263/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124257003/090BD8DF5B9CDBAB28210F88C2F06E1C952CC674/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124254334/5844FA075AA7582E104C144ABF8AA3532A1499FD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124254930/D10EF75843E3BD51F73298DFEC8857023B1FDD13/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124251572/F8781172BB1C66B6B1863857A09A18A036975730/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124252198/DE428CF011A88C39804AE074FD38749B0323BA6D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "98fdc5",
"Name": "CardCustom",
"Transform": {
"posX": 1.08289433,
"posY": 0.9735692,
"posZ": 7.043148,
"rotX": 0.00038436,
"rotY": 180.0,
"rotZ": -0.00122585206,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 4",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 472700,
"SidewaysCard": false,
"CustomDeck": {
"4727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124258142/3FA936D4643B9428E2B452BA1DCB275EE655F261/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124258814/649AA71064FD955EE640E5EC5129754EEA4CBA25/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dcc7c9",
"Name": "CardCustom",
"Transform": {
"posX": 0.7732712,
"posY": 1.00926459,
"posZ": 7.03913164,
"rotX": 0.0178386718,
"rotY": 180.0,
"rotZ": 359.985718,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 472600,
"SidewaysCard": false,
"CustomDeck": {
"4726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124256357/57D5530E458250C1955ABD385E1221BA6DDB3263/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124257003/090BD8DF5B9CDBAB28210F88C2F06E1C952CC674/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8bb523",
"Name": "CardCustom",
"Transform": {
"posX": 1.52113926,
"posY": 1.04922211,
"posZ": 7.06445026,
"rotX": 0.000538040535,
"rotY": 180.0,
"rotZ": -0.000277734915,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"CardID": 472500,
"SidewaysCard": false,
"CustomDeck": {
"4725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124254334/5844FA075AA7582E104C144ABF8AA3532A1499FD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124254930/D10EF75843E3BD51F73298DFEC8857023B1FDD13/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94ac99",
"Name": "CardCustom",
"Transform": {
"posX": 0.931911647,
"posY": 1.05884373,
"posZ": 6.74564934,
"rotX": -0.000395404466,
"rotY": 180.0,
"rotZ": -0.000188971884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 472400,
"SidewaysCard": false,
"CustomDeck": {
"4724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124251572/F8781172BB1C66B6B1863857A09A18A036975730/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124252198/DE428CF011A88C39804AE074FD38749B0323BA6D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c62fb5",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6766815,
"posY": 2.7348597,
"posZ": 11.4600525,
"rotX": -0.00159484451,
"rotY": 180.005676,
"rotZ": 1.26562548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "c907e9",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.5385971,
"posY": 2.95191145,
"posZ": 7.56055546,
"rotX": 358.735138,
"rotY": 270.0139,
"rotZ": 359.978973,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "cabbb3",
"Name": "CardCustom",
"Transform": {
"posX": -30.2242,
"posY": 1.6372,
"posZ": -0.03,
"rotX": 359.9201,
"rotY": 270.0274,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Hub",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 474200,
"SidewaysCard": false,
"CustomDeck": {
"4742": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124277102/50DF11F5B15292314BBDAED5B263DD77C68AD3BE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597734254/37FFB73299B75E147C860DD4D9F520B4389B6651/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d37681",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0100136,
"posY": 2.80800486,
"posZ": 7.494919,
"rotX": 358.7351,
"rotY": 270.012268,
"rotZ": 359.984222,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d513b8",
"Name": "CardCustom",
"Transform": {
"posX": -30.2243519,
"posY": 2.89364982,
"posZ": -7.699953,
"rotX": 358.7338,
"rotY": 269.985,
"rotZ": 179.997681,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tomorrowland",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475300,
"SidewaysCard": false,
"CustomDeck": {
"4753": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766646250/52C57A394844F9FE64B49A36381431E6CDBA55DA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597735534/092D80A154886E27C1494881938C69CBCD1660D1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "daa421",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69660079,
"posY": 1.55831766,
"posZ": 14.2781038,
"rotX": 359.955139,
"rotY": 224.990631,
"rotZ": 0.06867911,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set Aside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "47ecfa",
"Name": "Deck",
"Transform": {
"posX": 2.69981456,
"posY": 2.8275187,
"posZ": -9.326208,
"rotX": 359.920166,
"rotY": 269.984863,
"rotZ": 0.0170284677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreams Come True",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
475700,
475700,
475700,
475700
],
"CustomDeck": {
"4757": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766611708/8DDDD118A0B261B4884B7A82DA1CF5337F520351/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "12b0c5",
"Name": "CardCustom",
"Transform": {
"posX": -18.1914845,
"posY": 0.9784544,
"posZ": 0.3348421,
"rotX": 359.5939,
"rotY": 179.990936,
"rotZ": 0.246501639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Dream Come True",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 475700,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766611708/8DDDD118A0B261B4884B7A82DA1CF5337F520351/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "079332",
"Name": "CardCustom",
"Transform": {
"posX": -19.090004,
"posY": 0.966636539,
"posZ": 0.494630635,
"rotX": 0.06819777,
"rotY": 179.987885,
"rotZ": 359.541168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Dream Come True",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 475700,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766611708/8DDDD118A0B261B4884B7A82DA1CF5337F520351/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c430f1",
"Name": "CardCustom",
"Transform": {
"posX": -18.19237,
"posY": 1.04423463,
"posZ": 0.3328621,
"rotX": 0.094059974,
"rotY": 180.000229,
"rotZ": 0.0558236279,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Dream Come True",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 475700,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766611708/8DDDD118A0B261B4884B7A82DA1CF5337F520351/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "155ba7",
"Name": "CardCustom",
"Transform": {
"posX": -18.1923733,
"posY": 1.08082986,
"posZ": 0.332893372,
"rotX": 0.07050422,
"rotY": 180.000046,
"rotZ": 0.06622194,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Dream Come True",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 475700,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766611708/8DDDD118A0B261B4884B7A82DA1CF5337F520351/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "37a019",
"Name": "Deck",
"Transform": {
"posX": -15.68933,
"posY": 3.16611242,
"posZ": 1.31156409,
"rotX": 4.47354364,
"rotY": 180.249619,
"rotZ": 2.79690647,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Weaknesses",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
465600,
465700,
472600,
466000,
465800,
465800,
465800,
465800
],
"CustomDeck": {
"4656": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597591150/FA35B21E6181D2CCA1073E96AF4C594C8ED0B54A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4657": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597592533/01751D4C7679ECC19592A7301AB65AD6EF505318/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766549884/A0649A0C35E9398AEFC0E582C3982B030AC9D5A0/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4660": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597596840/CF271B7C48BD7CA6B02AB3E4BDAFF12BAE7B5006/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4658": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597593696/079AFB1DF8B5B3D90B224248A4263FCD7657715A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f6ddad",
"Name": "CardCustom",
"Transform": {
"posX": 5.529805,
"posY": 1.15910077,
"posZ": -7.45319366,
"rotX": 4.77109671,
"rotY": 180.119034,
"rotZ": 3.05905724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curse of the Skipper",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465600,
"SidewaysCard": false,
"CustomDeck": {
"4656": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597591150/FA35B21E6181D2CCA1073E96AF4C594C8ED0B54A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf9317",
"Name": "CardCustom",
"Transform": {
"posX": 5.050831,
"posY": 1.24175036,
"posZ": -7.831141,
"rotX": 7.34033632,
"rotY": 180.423264,
"rotZ": 2.94365549,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hitchhiking Ghosts",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465700,
"SidewaysCard": false,
"CustomDeck": {
"4657": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597592533/01751D4C7679ECC19592A7301AB65AD6EF505318/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f8f8f",
"Name": "CardCustom",
"Transform": {
"posX": 5.324663,
"posY": 1.36319637,
"posZ": -7.554676,
"rotX": 0.7503409,
"rotY": 180.015778,
"rotZ": 0.846117556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pirate's Life",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 472600,
"SidewaysCard": false,
"CustomDeck": {
"4726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766549884/A0649A0C35E9398AEFC0E582C3982B030AC9D5A0/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0659a7",
"Name": "CardCustom",
"Transform": {
"posX": 5.70462275,
"posY": 1.35026026,
"posZ": -7.436782,
"rotX": 6.28525162,
"rotY": 179.947174,
"rotZ": 358.8552,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Song Stuck In Your Head",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466000,
"SidewaysCard": false,
"CustomDeck": {
"4660": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597596840/CF271B7C48BD7CA6B02AB3E4BDAFF12BAE7B5006/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c279d9",
"Name": "CardCustom",
"Transform": {
"posX": 5.468211,
"posY": 1.39415228,
"posZ": -7.11675358,
"rotX": 0.691559732,
"rotY": 180.075165,
"rotZ": 0.903084934,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Longing to Return",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465800,
"SidewaysCard": false,
"CustomDeck": {
"4658": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597593696/079AFB1DF8B5B3D90B224248A4263FCD7657715A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a8857",
"Name": "CardCustom",
"Transform": {
"posX": 5.757073,
"posY": 1.35729706,
"posZ": -7.931952,
"rotX": 0.347273827,
"rotY": 180.002838,
"rotZ": 1.04292214,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Longing to Return",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465800,
"SidewaysCard": false,
"CustomDeck": {
"4658": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597593696/079AFB1DF8B5B3D90B224248A4263FCD7657715A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d13d2d",
"Name": "CardCustom",
"Transform": {
"posX": 5.059714,
"posY": 1.39757228,
"posZ": -7.655173,
"rotX": 0.9350856,
"rotY": 179.904556,
"rotZ": 0.4285538,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Longing to Return",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465800,
"SidewaysCard": false,
"CustomDeck": {
"4658": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597593696/079AFB1DF8B5B3D90B224248A4263FCD7657715A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6001c",
"Name": "CardCustom",
"Transform": {
"posX": 5.21216965,
"posY": 1.41797662,
"posZ": -7.56003237,
"rotX": 0.832391441,
"rotY": 180.056,
"rotZ": 0.5572544,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Longing to Return",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 465800,
"SidewaysCard": false,
"CustomDeck": {
"4658": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597593696/079AFB1DF8B5B3D90B224248A4263FCD7657715A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e410cb",
"Name": "Deck",
"Transform": {
"posX": 17.7125034,
"posY": 2.50718474,
"posZ": -21.8449574,
"rotX": 0.0168711785,
"rotY": 269.990753,
"rotZ": 0.07987848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fab Five",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
476100,
475800,
475700,
476000,
475900
],
"CustomDeck": {
"4761": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124301550/0EE3D184BEE87158E0B1F2C2358D76FCF1BCA99E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124305336/1B0B60928A2802BEB274C7448DC1641A07A56BD2/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4758": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124293042/7687A324806CE9F95B64AA25C59F14079385008B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124293745/92D7F11433FCD4F5ECC9BC81D5AB67B428F32FF8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4757": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124289786/35306309BC160566EAE1AEE793D802EBD59D4051/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124290493/D3CA0A6798A520BCE52B3B816A453D2578D9B16B/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4760": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124298392/AEB80A42BF986D954E86638D5381F1FFC2DE9A13/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124299210/AC12722EE62EB363EB2BFD44D25A3E2EE793E1D8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4759": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124295518/8928D1E06626B050F642BF8E3C84DF73DF10F9F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124296369/20D3E7A94DD23E2E1FB7FE41F1A7DD430AD0F454/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "de969a",
"Name": "CardCustom",
"Transform": {
"posX": -9.028112,
"posY": 0.973561466,
"posZ": 0.387262255,
"rotX": 0.000436567585,
"rotY": 180.000015,
"rotZ": -0.00288335816,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pluto",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 476100,
"SidewaysCard": false,
"CustomDeck": {
"4761": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124301550/0EE3D184BEE87158E0B1F2C2358D76FCF1BCA99E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124305336/1B0B60928A2802BEB274C7448DC1641A07A56BD2/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "37e222",
"Name": "CardCustom",
"Transform": {
"posX": -8.809838,
"posY": 1.00955069,
"posZ": 0.47805658,
"rotX": 0.00659123575,
"rotY": 180.0,
"rotZ": 359.9928,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Goofy",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475800,
"SidewaysCard": false,
"CustomDeck": {
"4758": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124293042/7687A324806CE9F95B64AA25C59F14079385008B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124293745/92D7F11433FCD4F5ECC9BC81D5AB67B428F32FF8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab3a3a",
"Name": "CardCustom",
"Transform": {
"posX": -8.832926,
"posY": 1.04923177,
"posZ": 0.0983643755,
"rotX": 7.78036556E-05,
"rotY": 180.0,
"rotZ": -0.00046809495,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Donald Duck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475700,
"SidewaysCard": false,
"CustomDeck": {
"4757": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124289786/35306309BC160566EAE1AEE793D802EBD59D4051/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124290493/D3CA0A6798A520BCE52B3B816A453D2578D9B16B/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bd38e",
"Name": "CardCustom",
"Transform": {
"posX": -8.768106,
"posY": 1.11122191,
"posZ": 0.322450638,
"rotX": 0.000682958867,
"rotY": 180.007584,
"rotZ": 3.36724663,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Minnie Mouse",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 476000,
"SidewaysCard": false,
"CustomDeck": {
"4760": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124298392/AEB80A42BF986D954E86638D5381F1FFC2DE9A13/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124299210/AC12722EE62EB363EB2BFD44D25A3E2EE793E1D8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f43ce",
"Name": "CardCustom",
"Transform": {
"posX": -8.360758,
"posY": 1.0684737,
"posZ": 0.286224246,
"rotX": 5.14084641E-05,
"rotY": 180.0,
"rotZ": -0.00101432158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mickey Mouse",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 475900,
"SidewaysCard": false,
"CustomDeck": {
"4759": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124295518/8928D1E06626B050F642BF8E3C84DF73DF10F9F7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124296369/20D3E7A94DD23E2E1FB7FE41F1A7DD430AD0F454/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7c567d",
"Name": "Deck",
"Transform": {
"posX": 18.49917,
"posY": 2.49774432,
"posZ": -17.57246,
"rotX": 0.016869707,
"rotY": 269.997253,
"rotZ": 0.07987925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crazed Vacationer Swarms",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
476200,
476200,
476200
],
"CustomDeck": {
"4762": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124311327/D671214ECF86EE0014264BD380047FBA2E907B7F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8865fe",
"Name": "CardCustom",
"Transform": {
"posX": -12.0512753,
"posY": 0.973495364,
"posZ": -2.249037,
"rotX": 0.00108323467,
"rotY": 180.000015,
"rotZ": 359.992737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crazed Vacationer Swarm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476200,
"SidewaysCard": false,
"CustomDeck": {
"4762": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124311327/D671214ECF86EE0014264BD380047FBA2E907B7F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6a22c",
"Name": "CardCustom",
"Transform": {
"posX": -11.38281,
"posY": 1.02305579,
"posZ": -2.249036,
"rotX": -0.000839795335,
"rotY": 180.0,
"rotZ": 0.003996176,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crazed Vacationer Swarm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476200,
"SidewaysCard": false,
"CustomDeck": {
"4762": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124311327/D671214ECF86EE0014264BD380047FBA2E907B7F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de65d3",
"Name": "CardCustom",
"Transform": {
"posX": -11.4544239,
"posY": 1.05015373,
"posZ": -2.27590275,
"rotX": 359.9925,
"rotY": 180.0,
"rotZ": 0.00703475066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crazed Vacationer Swarm",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 476200,
"SidewaysCard": false,
"CustomDeck": {
"4762": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774958417124311327/D671214ECF86EE0014264BD380047FBA2E907B7F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ac3c85",
"Name": "Deck",
"Transform": {
"posX": 16.5272369,
"posY": 2.539953,
"posZ": -15.6293983,
"rotX": 359.920135,
"rotY": 269.9693,
"rotZ": 0.0169178769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenirs",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
300,
200,
100,
466900,
466800,
466700,
466600,
467300,
467200,
467100,
467000
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766621068/4CDB85981459FAF648FA4F354C913797E997F280/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766619013/28B1BCE5FBB666E87F62D633F88BB9BD7603F614/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766614963/DCFB10733BA7287D0CBC9B45949129428DEB2D89/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597623946/479E5F6B7F63DE76F009B97CC7401E85498C8671/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4668": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597623184/DE38F877BC671010489C5FD4E37B67AE6589EAEA/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597622375/F6F39A11B372DE3E79ABECEF48C4A1B925D66738/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597620355/FAAE204601C9E88E28DF4A425F2ADDB3E7C5A59E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597632338/4BA1EEBAC5458D9A371432392C9FF814784C386F/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597631453/C9C599F748C98D9483EB399C359F65003DBFF64A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597630456/ABC3123D0F53FF4E9953D4FE301E742F0CB55455/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"4670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597629505/24823E969CBCA4CF669ED0D52565764DA099A169/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7270fa",
"Name": "CardCustom",
"Transform": {
"posX": -4.3321743,
"posY": 0.9735171,
"posZ": -3.83375573,
"rotX": 0.00087378145,
"rotY": 180.0,
"rotZ": 359.994171,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Popcorn Bucket (Simba)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 300,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766621068/4CDB85981459FAF648FA4F354C913797E997F280/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9282c8",
"Name": "CardCustom",
"Transform": {
"posX": -8.378361,
"posY": 0.973415852,
"posZ": -4.12979937,
"rotX": 0.00191103492,
"rotY": 180.0,
"rotZ": 359.987427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Popcorn Bucket (Mickey Balloon)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 200,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766619013/28B1BCE5FBB666E87F62D633F88BB9BD7603F614/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9cbb0",
"Name": "CardCustom",
"Transform": {
"posX": -12.6582575,
"posY": 0.9735257,
"posZ": -3.958687,
"rotX": 0.000802948547,
"rotY": 180.0,
"rotZ": -0.0052673514,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Popcorn Bucket (Alien)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 100,
"SidewaysCard": false,
"CustomDeck": {
"1": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1774957822766614963/DCFB10733BA7287D0CBC9B45949129428DEB2D89/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "43c484",
"Name": "CardCustom",
"Transform": {
"posX": 5.572976,
"posY": 0.97359,
"posZ": -2.86144161,
"rotX": 0.000825454656,
"rotY": 180.000244,
"rotZ": -0.00191097613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Pirate Sword",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466900,
"SidewaysCard": false,
"CustomDeck": {
"4669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597623946/479E5F6B7F63DE76F009B97CC7401E85498C8671/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf6f44",
"Name": "CardCustom",
"Transform": {
"posX": 5.414595,
"posY": 1.00492287,
"posZ": -2.416132,
"rotX": 0.004554558,
"rotY": 180.006027,
"rotZ": 359.994,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Blaster Pistol",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466800,
"SidewaysCard": false,
"CustomDeck": {
"4668": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597623184/DE38F877BC671010489C5FD4E37B67AE6589EAEA/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fbfa4c",
"Name": "CardCustom",
"Transform": {
"posX": 5.709316,
"posY": 1.03899074,
"posZ": -3.03315258,
"rotX": 1.79532453E-05,
"rotY": 179.999771,
"rotZ": -0.000731835258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Song of the Dolls",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466700,
"SidewaysCard": false,
"CustomDeck": {
"4667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597622375/F6F39A11B372DE3E79ABECEF48C4A1B925D66738/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "604e49",
"Name": "CardCustom",
"Transform": {
"posX": 4.95787144,
"posY": 1.04857063,
"posZ": -2.60188937,
"rotX": -4.086201E-05,
"rotY": 179.999985,
"rotZ": -0.002520052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Autograph Book",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 466600,
"SidewaysCard": false,
"CustomDeck": {
"4666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597620355/FAAE204601C9E88E28DF4A425F2ADDB3E7C5A59E/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8780b",
"Name": "CardCustom",
"Transform": {
"posX": 6.921694,
"posY": 0.973585367,
"posZ": -3.03964567,
"rotX": 0.000214118176,
"rotY": 180.0,
"rotZ": -0.00131821854,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Hat (Sorcerer Mickey)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467300,
"SidewaysCard": false,
"CustomDeck": {
"4673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597632338/4BA1EEBAC5458D9A371432392C9FF814784C386F/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a91d3",
"Name": "CardCustom",
"Transform": {
"posX": 6.70093155,
"posY": 1.00491083,
"posZ": -3.280358,
"rotX": -0.00278124074,
"rotY": 180.0,
"rotZ": -0.005288438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Hat (Chewbacca)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467200,
"SidewaysCard": false,
"CustomDeck": {
"4672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597631453/C9C599F748C98D9483EB399C359F65003DBFF64A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1dd09d",
"Name": "CardCustom",
"Transform": {
"posX": 6.771544,
"posY": 1.03893423,
"posZ": -3.00812936,
"rotX": 0.00352940732,
"rotY": 179.937973,
"rotZ": 0.00710041029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Hat (Belle)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467100,
"SidewaysCard": false,
"CustomDeck": {
"4671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597630456/ABC3123D0F53FF4E9953D4FE301E742F0CB55455/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "817ec0",
"Name": "CardCustom",
"Transform": {
"posX": 6.921803,
"posY": 1.04857087,
"posZ": -3.43338728,
"rotX": -0.000780996,
"rotY": 180.000061,
"rotZ": -0.0007247446,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Souvenir Hat (Alien)",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 467000,
"SidewaysCard": false,
"CustomDeck": {
"4670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597629505/24823E969CBCA4CF669ED0D52565764DA099A169/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "dbdb0f",
"Name": "CardCustom",
"Transform": {
"posX": -43.37011,
"posY": 3.18295813,
"posZ": -0.02985235,
"rotX": 358.734741,
"rotY": 270.0007,
"rotZ": 179.998535,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Park Entrance",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CardID": 473200,
"SidewaysCard": false,
"CustomDeck": {
"4732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1591414635597731236/52B38A5ED4D4488F0D561F37D8F96F3CC2653BB6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1620690956766575047/4E0745FA5F3EDE52AF3F1392FF85EC2B3F72DE8F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e600d4",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.01611,
"posY": 1.72376359,
"posZ": 15.7743607,
"rotX": 359.920044,
"rotY": 270.214722,
"rotZ": 180.016541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}