5444 lines
167 KiB
JSON
5444 lines
167 KiB
JSON
{
|
|
"GUID": "a61b48",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 12.2498465,
|
|
"posY": 1.46560574,
|
|
"posZ": 3.9863708,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.000519,
|
|
"rotZ": 0.01687357,
|
|
"scaleX": 2.21,
|
|
"scaleY": 0.46,
|
|
"scaleZ": 2.42
|
|
},
|
|
"Nickname": "Jenny's Choice",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"MaterialIndex": -1,
|
|
"MeshIndex": -1,
|
|
"CustomMesh": {
|
|
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
|
|
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/790858329422808079/1407B0AB89A9DBCFEE07A84A0979829556D84A78/",
|
|
"NormalURL": "",
|
|
"ColliderURL": "",
|
|
"Convex": true,
|
|
"MaterialIndex": 3,
|
|
"TypeIndex": 6,
|
|
"CastShadows": true
|
|
},
|
|
"Bag": {
|
|
"Order": 0
|
|
},
|
|
"LuaScript": "function 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 onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n 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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
|
|
"LuaScriptState": "{\"ml\":{\"057b7e\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"06d29e\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"149816\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0009,\"z\":359.9201}},\"1af6e8\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0169}},\"1e7961\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9203,\"y\":270,\"z\":0.016}},\"29d7e2\":{\"lock\":false,\"pos\":{\"x\":-15.5985,\"y\":1.8209,\"z\":0.017},\"rot\":{\"x\":359.8887,\"y\":269.9785,\"z\":0.0184}},\"3ba881\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6885,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0169}},\"3c4300\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"3d9a8b\":{\"lock\":false,\"pos\":{\"x\":-22.2198,\"y\":1.7339,\"z\":-7.7092},\"rot\":{\"x\":0.0792,\"y\":269.9715,\"z\":359.9832}},\"44b0c5\":{\"lock\":false,\"pos\":{\"x\":-26.7848,\"y\":1.6188,\"z\":-0.0522},\"rot\":{\"x\":0.0799,\"y\":90.0026,\"z\":359.9831}},\"46ead9\":{\"lock\":false,\"pos\":{\"x\":-31.7026,\"y\":1.743,\"z\":-7.7614},\"rot\":{\"x\":0.081,\"y\":270.0021,\"z\":359.9834}},\"61a21b\":{\"lock\":false,\"pos\":{\"x\":-20.5245,\"y\":1.6101,\"z\":-0.2141},\"rot\":{\"x\":359.9201,\"y\":269.8899,\"z\":0.0171}},\"6aa57e\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6954,\"z\":-0.0298},\"rot\":{\"x\":359.9207,\"y\":269.989,\"z\":0.0183}},\"6cb6e7\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":-0.0006,\"z\":359.9201}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":-0.0008,\"z\":359.9201}},\"845074\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"8bae65\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7344,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"b2bd25\":{\"lock\":false,\"pos\":{\"x\":-1.177,\"y\":1.5467,\"z\":-27.5609},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0169}},\"b5ceb0\":{\"lock\":false,\"pos\":{\"x\":-26.8548,\"y\":1.6211,\"z\":7.3881},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"b81937\":{\"lock\":false,\"pos\":{\"x\":-26.6804,\"y\":1.6176,\"z\":-3.8413},\"rot\":{\"x\":0.0684,\"y\":135.0054,\"z\":0.0446}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.819,\"y\":1.5823,\"z\":-15.2311},\"rot\":{\"x\":359.9197,\"y\":270.0322,\"z\":0.0168}},\"c6a2ab\":{\"lock\":false,\"pos\":{\"x\":-27.6254,\"y\":1.6167,\"z\":-11.1322},\"rot\":{\"x\":359.9316,\"y\":314.9959,\"z\":359.9554}},\"cca4ce\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.684,\"z\":-7.6884},\"rot\":{\"x\":359.9201,\"y\":270.0044,\"z\":0.0167}},\"d778ee\":{\"lock\":false,\"pos\":{\"x\":-26.967,\"y\":1.6168,\"z\":-7.7901},\"rot\":{\"x\":359.9201,\"y\":270.0042,\"z\":0.0169}},\"df8dff\":{\"lock\":false,\"pos\":{\"x\":-31.957,\"y\":1.8293,\"z\":-0.0662},\"rot\":{\"x\":4.7643,\"y\":270.0184,\"z\":0.017}},\"e02060\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0001,\"z\":0.0803}},\"ea8211\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6931,\"z\":-7.6998},\"rot\":{\"x\":359.9202,\"y\":269.9836,\"z\":0.0165}},\"ef067f\":{\"lock\":false,\"pos\":{\"x\":-27.2278,\"y\":1.6207,\"z\":4.0347},\"rot\":{\"x\":0.0684,\"y\":135.0052,\"z\":0.0446}}}}",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "a45247",
|
|
"Name": "Custom_Model_Bag",
|
|
"Transform": {
|
|
"posX": 1.69610047,
|
|
"posY": 1.55831707,
|
|
"posZ": 14.2788019,
|
|
"rotX": 359.955139,
|
|
"rotY": 224.997986,
|
|
"rotZ": 0.06867207,
|
|
"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
|
|
},
|
|
"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": "e448d5",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.98023,
|
|
"posY": 2.8481555,
|
|
"posZ": 17.126915,
|
|
"rotX": -0.0038628988,
|
|
"rotY": 269.9966,
|
|
"rotZ": 352.980042,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Isabelle Barnes",
|
|
"Description": "The Virtuoso at the Gates of Dawn",
|
|
"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": 278230,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "44dba6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.9998245,
|
|
"posY": 2.85824013,
|
|
"posZ": 16.98272,
|
|
"rotX": -0.004247951,
|
|
"rotY": 270.008667,
|
|
"rotZ": 352.2927,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Aimless",
|
|
"Description": "Flaw.",
|
|
"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": 278222,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f1fb80",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 15.2784252,
|
|
"posY": 4.76827431,
|
|
"posZ": 20.4255333,
|
|
"rotX": 0.0207951069,
|
|
"rotY": 270.002472,
|
|
"rotZ": 0.0167668574,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Emerald Light",
|
|
"Description": "Mystery.",
|
|
"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": 278224,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "902091",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 18.8035526,
|
|
"posY": 2.848998,
|
|
"posZ": 17.1067467,
|
|
"rotX": 359.992737,
|
|
"rotY": 270.0071,
|
|
"rotZ": 352.864441,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "I Killed Her",
|
|
"Description": "Flaw. Madness.",
|
|
"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": 278223,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "459082",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 18.7453556,
|
|
"posY": 2.71372843,
|
|
"posZ": 20.77142,
|
|
"rotX": 0.0208087284,
|
|
"rotY": 270.005219,
|
|
"rotZ": 0.0167747755,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Izzie's Violin",
|
|
"Description": "Touched by the Green Man",
|
|
"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": 278227,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "5541b1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.39818,
|
|
"posY": 2.71515131,
|
|
"posZ": 21.1006126,
|
|
"rotX": 0.020818023,
|
|
"rotY": 269.970642,
|
|
"rotZ": 0.0167599712,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lost in Thought",
|
|
"Description": "Flaw.",
|
|
"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": 278226,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "41faa0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.1127338,
|
|
"posY": 2.71696329,
|
|
"posZ": 27.64441,
|
|
"rotX": 0.0208090786,
|
|
"rotY": 270.0015,
|
|
"rotZ": 0.01677103,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Isabelle Barnes",
|
|
"Description": "Captive",
|
|
"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": 278221,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "e426d0",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 22.3993549,
|
|
"posY": 2.71641016,
|
|
"posZ": 25.3991432,
|
|
"rotX": 0.0208096448,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0167705622,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Lost in Thought",
|
|
"Description": "Flaw.",
|
|
"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": 278228,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "be33d6",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": 16.817791,
|
|
"posY": 3.411623,
|
|
"posZ": 47.160202,
|
|
"rotX": 0.0205937251,
|
|
"rotY": 270.0024,
|
|
"rotZ": 0.016699899,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Herald of the Green Man",
|
|
"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": [
|
|
278229,
|
|
278229,
|
|
278229
|
|
],
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "902123",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 6.31546831,
|
|
"posY": 1.55521894,
|
|
"posZ": 36.7954063,
|
|
"rotX": 359.920441,
|
|
"rotY": 270.0022,
|
|
"rotZ": 0.0147446413,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Herald of the Green Man",
|
|
"Description": "Cultist.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278229,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c4bd76",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 6.385285,
|
|
"posY": 1.70067513,
|
|
"posZ": 37.0480766,
|
|
"rotX": 359.940582,
|
|
"rotY": 270.00177,
|
|
"rotZ": 0.00223171874,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Herald of the Green Man",
|
|
"Description": "Cultist.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278229,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c48c8b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 6.589958,
|
|
"posY": 1.73346,
|
|
"posZ": 36.89643,
|
|
"rotX": 359.9198,
|
|
"rotY": 270.011475,
|
|
"rotZ": 0.0161295049,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Herald of the Green Man",
|
|
"Description": "Cultist.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278229,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "511acf",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.49686,
|
|
"posY": 3.40553784,
|
|
"posZ": 49.8375244,
|
|
"rotX": 0.00113429164,
|
|
"rotY": 269.997131,
|
|
"rotZ": 359.238983,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Isabelle Barnes",
|
|
"Description": "Double Trouble",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278225,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b290b5",
|
|
"Name": "CardCustom",
|
|
"Transform": {
|
|
"posX": 25.4394569,
|
|
"posY": 2.5364,
|
|
"posZ": 24.7018623,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.013458,
|
|
"rotZ": 0.01687718,
|
|
"scaleX": 0.6,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 0.6
|
|
},
|
|
"Nickname": "Isabelle Barnes Token",
|
|
"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": 269800,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2698": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421187010/AF08A3E5D06B5F4C153D2750866610AB2381321A/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421187773/51AE9C4AB59CB0C6FBE1CC1D8644ABD90FED4EFF/",
|
|
"NumWidth": 1,
|
|
"NumHeight": 1,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "2046ad",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.570858,
|
|
"posY": 3.412187,
|
|
"posZ": 47.843502,
|
|
"rotX": 0.0167786367,
|
|
"rotY": 179.9999,
|
|
"rotZ": 359.979156,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Isabelle Barnes Investigator Card",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278307,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d4aeeb",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 1.69642317,
|
|
"posY": 3.72839475,
|
|
"posZ": 14.2788382,
|
|
"rotX": 359.94812,
|
|
"rotY": 224.998062,
|
|
"rotZ": 0.0583315231,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Amphitheatre",
|
|
"Description": "Ground Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278218,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "8bae65",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -3.92770028,
|
|
"posY": 1.73440385,
|
|
"posZ": 5.757201,
|
|
"rotX": 359.919739,
|
|
"rotY": 269.999817,
|
|
"rotZ": 180.016815,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Encounter Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": true,
|
|
"Hands": false,
|
|
"SidewaysCard": false,
|
|
"DeckIDs": [
|
|
3623,
|
|
3634,
|
|
3623,
|
|
3752,
|
|
3751,
|
|
3625,
|
|
3634,
|
|
3751,
|
|
278232,
|
|
3751,
|
|
278231,
|
|
278232,
|
|
3633,
|
|
278231,
|
|
3752,
|
|
3634,
|
|
3625,
|
|
3623,
|
|
278232,
|
|
278231,
|
|
3752,
|
|
278232,
|
|
3624
|
|
],
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
},
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
},
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "c70e63",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 98.93172,
|
|
"posY": 1.556378,
|
|
"posZ": 15.9665985,
|
|
"rotX": 359.989929,
|
|
"rotY": 269.999969,
|
|
"rotZ": 359.98764,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"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": 3623,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "dbcee1",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 90.53866,
|
|
"posY": 1.55464137,
|
|
"posZ": -0.678629,
|
|
"rotX": 359.990082,
|
|
"rotY": 270.000366,
|
|
"rotZ": 359.988,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Goat Spawn",
|
|
"Description": "Humanoid. Monster.",
|
|
"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": 3634,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "4072d7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 99.0756,
|
|
"posY": 1.55269325,
|
|
"posZ": 16.03813,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.9876,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"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": 3623,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7a814c",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 102.541641,
|
|
"posY": 1.40976667,
|
|
"posZ": -12.4745493,
|
|
"rotX": 359.981262,
|
|
"rotY": 269.998077,
|
|
"rotZ": 359.984039,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Twist of Fate",
|
|
"Description": "Omen.",
|
|
"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": 3752,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cbb71e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.0453854,
|
|
"posY": 1.69722033,
|
|
"posZ": 36.7507,
|
|
"rotX": 359.933167,
|
|
"rotY": 270.000336,
|
|
"rotZ": 0.0124639394,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Luck",
|
|
"Description": "Omen.",
|
|
"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": 3751,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6f5b7b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 98.78452,
|
|
"posY": 1.40295327,
|
|
"posZ": 16.366806,
|
|
"rotX": 359.987427,
|
|
"rotY": 269.999817,
|
|
"rotZ": 359.984558,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Chanting",
|
|
"Description": "Hex.",
|
|
"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": 3625,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bda9db",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 90.78235,
|
|
"posY": 1.57190418,
|
|
"posZ": -0.8887629,
|
|
"rotX": 359.9898,
|
|
"rotY": 269.999756,
|
|
"rotZ": 359.987976,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Goat Spawn",
|
|
"Description": "Humanoid. Monster.",
|
|
"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": 3634,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "85da91",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 103.125893,
|
|
"posY": 1.55867076,
|
|
"posZ": -12.2961349,
|
|
"rotX": 359.986877,
|
|
"rotY": 269.996216,
|
|
"rotZ": 359.9824,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Luck",
|
|
"Description": "Omen.",
|
|
"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": 3751,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ccbe21",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.4987707,
|
|
"posY": 1.63379765,
|
|
"posZ": 19.8524475,
|
|
"rotX": 359.919861,
|
|
"rotY": 269.9313,
|
|
"rotZ": 355.022858,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Discordant Piping",
|
|
"Description": "Omen. Terror.",
|
|
"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": 278232,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "98fea7",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 103.118362,
|
|
"posY": 1.55657685,
|
|
"posZ": -11.9283237,
|
|
"rotX": 359.990021,
|
|
"rotY": 270.003235,
|
|
"rotZ": 359.99408,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cursed Luck",
|
|
"Description": "Omen.",
|
|
"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": 3751,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "76e166",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 6.46177149,
|
|
"posY": 1.5502336,
|
|
"posZ": 20.4411659,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.996277,
|
|
"rotZ": 0.0168801527,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Half-Cocked",
|
|
"Description": "Flaw.",
|
|
"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": 278231,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1058c3",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.4376593,
|
|
"posY": 1.63597262,
|
|
"posZ": 16.1655769,
|
|
"rotX": 359.3572,
|
|
"rotY": 269.981567,
|
|
"rotZ": 4.217363,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Discordant Piping",
|
|
"Description": "Omen. Terror.",
|
|
"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": 278232,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "da8001",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 90.86829,
|
|
"posY": 1.55806494,
|
|
"posZ": -0.202746555,
|
|
"rotX": 359.987366,
|
|
"rotY": 270.0016,
|
|
"rotZ": 359.983429,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Relentless Dark Young",
|
|
"Description": "Monster. Dark Young.",
|
|
"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": 3633,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3a7207",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 12.8046408,
|
|
"posY": 1.54074943,
|
|
"posZ": 18.1677952,
|
|
"rotX": 359.92,
|
|
"rotY": 269.983246,
|
|
"rotZ": 0.0179217421,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Half-Cocked",
|
|
"Description": "Flaw.",
|
|
"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": 278231,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "f11672",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 102.516029,
|
|
"posY": 1.53537273,
|
|
"posZ": -11.9082127,
|
|
"rotX": 1.18894553,
|
|
"rotY": 269.99054,
|
|
"rotZ": 359.979553,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Twist of Fate",
|
|
"Description": "Omen.",
|
|
"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": 3752,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "19459f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 90.65886,
|
|
"posY": 1.40921557,
|
|
"posZ": -0.233399391,
|
|
"rotX": 359.987427,
|
|
"rotY": 270.0001,
|
|
"rotZ": 359.984528,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Goat Spawn",
|
|
"Description": "Humanoid. Monster.",
|
|
"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": 3634,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "df668b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 99.2046661,
|
|
"posY": 1.54923761,
|
|
"posZ": 15.9180088,
|
|
"rotX": 359.989929,
|
|
"rotY": 270.0,
|
|
"rotZ": 359.98764,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Mysterious Chanting",
|
|
"Description": "Hex.",
|
|
"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": 3625,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "c70e63",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 98.97962,
|
|
"posY": 1.55247211,
|
|
"posZ": 16.3414173,
|
|
"rotX": 359.99057,
|
|
"rotY": 269.9967,
|
|
"rotZ": 359.984833,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Acolyte",
|
|
"Description": "Humanoid. Cultist.",
|
|
"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": 3623,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "36c290",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 14.3382807,
|
|
"posY": 1.69389069,
|
|
"posZ": 19.8668289,
|
|
"rotX": 359.922943,
|
|
"rotY": 269.993866,
|
|
"rotZ": 0.0108329291,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Discordant Piping",
|
|
"Description": "Omen. Terror.",
|
|
"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": 278232,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "0f9116",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 9.619959,
|
|
"posY": 1.54502892,
|
|
"posZ": 17.7829475,
|
|
"rotX": 359.918671,
|
|
"rotY": 270.00235,
|
|
"rotZ": 0.0155547587,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Half-Cocked",
|
|
"Description": "Flaw.",
|
|
"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": 278231,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "754870",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 102.251732,
|
|
"posY": 1.54939449,
|
|
"posZ": -12.6249342,
|
|
"rotX": -0.003878043,
|
|
"rotY": 270.001038,
|
|
"rotZ": 359.993439,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Twist of Fate",
|
|
"Description": "Omen.",
|
|
"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": 3752,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"37": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/",
|
|
"BackURL": "https://i.imgur.com/h4om3TQ.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "ebc777",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.145697,
|
|
"posY": 1.5463376,
|
|
"posZ": 15.1827192,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9961,
|
|
"rotZ": 0.0168802738,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Discordant Piping",
|
|
"Description": "Omen. Terror.",
|
|
"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": 278232,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "159f90",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 98.45666,
|
|
"posY": 1.55439174,
|
|
"posZ": 16.9464512,
|
|
"rotX": 1.20685,
|
|
"rotY": 269.9761,
|
|
"rotZ": 357.846649,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wizard of the Order",
|
|
"Description": "Humanoid. Cultist.",
|
|
"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": 3624,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"36": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
|
|
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 7,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": false,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "06d29e",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.72480035,
|
|
"posY": 1.65513861,
|
|
"posZ": 0.373300284,
|
|
"rotX": 0.0168358069,
|
|
"rotY": 179.999512,
|
|
"rotZ": 0.08025744,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Agenda Deck",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
278306,
|
|
278305,
|
|
278304,
|
|
278303
|
|
],
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "2a50e6",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 8.065705,
|
|
"posY": 1.53730142,
|
|
"posZ": -15.7410765,
|
|
"rotX": 0.0173158757,
|
|
"rotY": 180.000061,
|
|
"rotZ": 0.07704001,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "I'm too late",
|
|
"Description": "Agenda 4",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278306,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "a4b900",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.6349916,
|
|
"posY": 1.533756,
|
|
"posZ": -15.5937719,
|
|
"rotX": 0.0173721686,
|
|
"rotY": 180.000122,
|
|
"rotZ": 0.07659864,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "An Audience of One",
|
|
"Description": "Agenda 3",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278305,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "8ff22a",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.1831341,
|
|
"posY": 1.53021646,
|
|
"posZ": -15.5093365,
|
|
"rotX": 0.017557729,
|
|
"rotY": 179.999466,
|
|
"rotZ": 0.07643831,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "The Growing Dissonance",
|
|
"Description": "Agenda 2",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278304,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "abd600",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.0555811,
|
|
"posY": 1.67562544,
|
|
"posZ": -15.60496,
|
|
"rotX": 0.0308804456,
|
|
"rotY": 179.997437,
|
|
"rotZ": 0.04843237,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Remnants",
|
|
"Description": "Agenda 1",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278303,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "e02060",
|
|
"Name": "Deck",
|
|
"Transform": {
|
|
"posX": -2.6886,
|
|
"posY": 1.65499747,
|
|
"posZ": -5.0485,
|
|
"rotX": 0.01683488,
|
|
"rotY": 180.000122,
|
|
"rotZ": 0.0802577659,
|
|
"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": false,
|
|
"Hands": false,
|
|
"SidewaysCard": true,
|
|
"DeckIDs": [
|
|
278302,
|
|
278301,
|
|
278300
|
|
],
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"ContainedObjects": [
|
|
{
|
|
"GUID": "89e9bc",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 10.6020317,
|
|
"posY": 1.53262413,
|
|
"posZ": -19.11281,
|
|
"rotX": 0.0187283047,
|
|
"rotY": 180.000076,
|
|
"rotZ": 0.06723488,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "An End to the Ritual",
|
|
"Description": "Act 3",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278302,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "528179",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.14345,
|
|
"posY": 1.5292182,
|
|
"posZ": -19.2045822,
|
|
"rotX": 0.0171248354,
|
|
"rotY": 180.000092,
|
|
"rotZ": 0.0781344548,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "A Plan Unfolds",
|
|
"Description": "Act 2",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278301,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "21e103",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 13.5584593,
|
|
"posY": 1.689817,
|
|
"posZ": -19.1340771,
|
|
"rotX": 0.0190580543,
|
|
"rotY": 180.000122,
|
|
"rotZ": 0.0785427243,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Gaining Entrance",
|
|
"Description": "Act 1",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278300,
|
|
"SidewaysCard": true,
|
|
"CustomDeck": {
|
|
"2783": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"GUID": "845074",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -3.956,
|
|
"posY": 1.65564811,
|
|
"posZ": -10.4412012,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.0,
|
|
"rotZ": 0.0168411136,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Scenario",
|
|
"Description": "Jenny's Choice",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278208,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "bbb70a",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -3.819,
|
|
"posY": 1.58233535,
|
|
"posZ": -15.2311029,
|
|
"rotX": 359.919739,
|
|
"rotY": 270.032166,
|
|
"rotZ": 0.0167927854,
|
|
"scaleX": 2.2,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 2.2
|
|
},
|
|
"Nickname": "Jenny's Choice",
|
|
"Description": "click to set chaos token difficulty",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 1.0,
|
|
"g": 1.0,
|
|
"b": 1.0
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": false,
|
|
"CustomImage": {
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
|
|
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
|
|
"ImageScalar": 1.0,
|
|
"WidthScale": 0.0,
|
|
"CustomTile": {
|
|
"Type": 3,
|
|
"Thickness": 0.1,
|
|
"Stackable": false,
|
|
"Stretch": true
|
|
}
|
|
},
|
|
"LuaScript": "name = 'Jennys Choice'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b2bd25",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -1.17699993,
|
|
"posY": 1.54674828,
|
|
"posZ": -27.5609055,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.0168726072,
|
|
"scaleX": 3.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 3.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278400,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2784": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": "",
|
|
"States": {
|
|
"2": {
|
|
"GUID": "5da00f",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.5690212,
|
|
"posY": 1.5380919,
|
|
"posZ": 27.0593,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.01687261,
|
|
"scaleX": 3.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 3.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278401,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2784": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"4": {
|
|
"GUID": "93665b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.569025,
|
|
"posY": 1.53809178,
|
|
"posZ": 27.0593071,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.01687289,
|
|
"scaleX": 3.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 3.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278403,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2784": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
"3": {
|
|
"GUID": "d1a322",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": 16.5690269,
|
|
"posY": 1.53809178,
|
|
"posZ": 27.05931,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.9994,
|
|
"rotZ": 0.0168726072,
|
|
"scaleX": 3.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 3.0
|
|
},
|
|
"Nickname": "",
|
|
"Description": "",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278402,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2784": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/",
|
|
"NumWidth": 2,
|
|
"NumHeight": 2,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "df8dff",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -31.9570026,
|
|
"posY": 1.82929218,
|
|
"posZ": -0.06620596,
|
|
"rotX": 4.76437759,
|
|
"rotY": 270.018463,
|
|
"rotZ": 0.0169948135,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wine Cellar",
|
|
"Description": "Underground.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278211,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6aa57e",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2243958,
|
|
"posY": 1.69539714,
|
|
"posZ": -0.02980699,
|
|
"rotX": 359.920746,
|
|
"rotY": 269.989,
|
|
"rotZ": 0.0182655919,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Wine Cellar",
|
|
"Description": "Underground.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278210,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "1af6e8",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2241,
|
|
"posY": 1.69758844,
|
|
"posZ": 7.56999969,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999939,
|
|
"rotZ": 0.0168763362,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Dismal Creek",
|
|
"Description": "Woods.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278214,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "b5ceb0",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.8548,
|
|
"posY": 1.62112308,
|
|
"posZ": 7.3881,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.00415,
|
|
"rotZ": 0.0168958232,
|
|
"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": "3ba881",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.6765976,
|
|
"posY": 1.68845844,
|
|
"posZ": 7.56999874,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.999634,
|
|
"rotZ": 0.016877139,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Hidden Grove",
|
|
"Description": "Woods.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278209,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "3c4300",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.6766,
|
|
"posY": 1.68622041,
|
|
"posZ": -0.03000035,
|
|
"rotX": 359.9201,
|
|
"rotY": 269.998718,
|
|
"rotZ": 0.0168778971,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Cathedral Entrance",
|
|
"Description": "Entrance.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278217,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "7234af",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -23.6765,
|
|
"posY": 1.61565232,
|
|
"posZ": 3.86000013,
|
|
"rotX": 359.983124,
|
|
"rotY": -0.000779832946,
|
|
"rotZ": 359.920074,
|
|
"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": "ef067f",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -27.2278,
|
|
"posY": 1.62065566,
|
|
"posZ": 4.0347,
|
|
"rotX": 0.06842722,
|
|
"rotY": 135.005173,
|
|
"rotZ": 0.0445677564,
|
|
"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": "44b0c5",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.7848,
|
|
"posY": 1.61883473,
|
|
"posZ": -0.0522002727,
|
|
"rotX": 0.0798951462,
|
|
"rotY": 90.00261,
|
|
"rotZ": 359.9831,
|
|
"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": "",
|
|
"States": {
|
|
"3": {
|
|
"GUID": "5b38c6",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.7732563,
|
|
"posY": 1.61881173,
|
|
"posZ": -0.07530405,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.00415,
|
|
"rotZ": 0.0168720391,
|
|
"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": ""
|
|
},
|
|
"1": {
|
|
"GUID": "d6ce31",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.7732563,
|
|
"posY": 1.61881161,
|
|
"posZ": -0.07530425,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.00415,
|
|
"rotZ": 0.0168945231,
|
|
"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": ""
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"GUID": "b81937",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.6804,
|
|
"posY": 1.61757314,
|
|
"posZ": -3.8413,
|
|
"rotX": 0.0684269741,
|
|
"rotY": 135.005325,
|
|
"rotZ": 0.0445682779,
|
|
"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": "149816",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -30.2241,
|
|
"posY": 1.62251818,
|
|
"posZ": -3.82999945,
|
|
"rotX": 359.983124,
|
|
"rotY": -0.0008605046,
|
|
"rotZ": 359.920074,
|
|
"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": "ea8211",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -30.2240772,
|
|
"posY": 1.693086,
|
|
"posZ": -7.699835,
|
|
"rotX": 359.920166,
|
|
"rotY": 269.983917,
|
|
"rotZ": 0.0165005736,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Organ Room",
|
|
"Description": "Ground Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278219,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "46ead9",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -31.7029858,
|
|
"posY": 1.743569,
|
|
"posZ": -7.76126,
|
|
"rotX": 0.0469017029,
|
|
"rotY": 270.005341,
|
|
"rotZ": 359.784119,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Organ Room",
|
|
"Description": "Ground Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278220,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "d778ee",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -26.967,
|
|
"posY": 1.61681008,
|
|
"posZ": -7.79010153,
|
|
"rotX": 359.9201,
|
|
"rotY": 270.004181,
|
|
"rotZ": 0.0168939885,
|
|
"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": "057b7e",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -23.6763973,
|
|
"posY": 1.6111263,
|
|
"posZ": -11.5100021,
|
|
"rotX": 359.983124,
|
|
"rotY": -0.000765136268,
|
|
"rotZ": 359.920074,
|
|
"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": "c6a2ab",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -27.6254,
|
|
"posY": 1.61674428,
|
|
"posZ": -11.1322012,
|
|
"rotX": 359.93158,
|
|
"rotY": 314.99585,
|
|
"rotZ": 359.955444,
|
|
"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": "3d9a8b",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -22.2193356,
|
|
"posY": 1.73406148,
|
|
"posZ": -7.709142,
|
|
"rotX": 0.0884191841,
|
|
"rotY": 269.9699,
|
|
"rotZ": 359.8635,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inner Chamber",
|
|
"Description": "Ground Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278212,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "cca4ce",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -23.676403,
|
|
"posY": 1.6839633,
|
|
"posZ": -7.688347,
|
|
"rotX": 359.920135,
|
|
"rotY": 270.0047,
|
|
"rotZ": 0.0167363174,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Inner Chamber",
|
|
"Description": "Ground Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278213,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "6cb6e7",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -23.6764,
|
|
"posY": 1.61338782,
|
|
"posZ": -3.83000064,
|
|
"rotX": 359.983124,
|
|
"rotY": -0.000585325353,
|
|
"rotZ": 359.920074,
|
|
"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": "61a21b",
|
|
"Name": "Custom_Tile",
|
|
"Transform": {
|
|
"posX": -20.524498,
|
|
"posY": 1.61005735,
|
|
"posZ": -0.2141004,
|
|
"rotX": 359.920135,
|
|
"rotY": 269.8898,
|
|
"rotZ": 0.0170554947,
|
|
"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": "1e7961",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -17.12,
|
|
"posY": 1.677066,
|
|
"posZ": -0.03000138,
|
|
"rotX": 359.920258,
|
|
"rotY": 270.000031,
|
|
"rotZ": 0.0160405636,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Balcony",
|
|
"Description": "Upper Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278216,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
},
|
|
{
|
|
"GUID": "29d7e2",
|
|
"Name": "Card",
|
|
"Transform": {
|
|
"posX": -15.5984755,
|
|
"posY": 1.820907,
|
|
"posZ": 0.0169964973,
|
|
"rotX": 359.8887,
|
|
"rotY": 269.978546,
|
|
"rotZ": 0.0183628388,
|
|
"scaleX": 1.0,
|
|
"scaleY": 1.0,
|
|
"scaleZ": 1.0
|
|
},
|
|
"Nickname": "Balcony",
|
|
"Description": "Upper Floor.",
|
|
"GMNotes": "",
|
|
"ColorDiffuse": {
|
|
"r": 0.713235259,
|
|
"g": 0.713235259,
|
|
"b": 0.713235259
|
|
},
|
|
"LayoutGroupSortIndex": 0,
|
|
"Value": 0,
|
|
"Locked": false,
|
|
"Grid": true,
|
|
"Snap": true,
|
|
"IgnoreFoW": false,
|
|
"MeasureMovement": false,
|
|
"DragSelectable": true,
|
|
"Autoraise": true,
|
|
"Sticky": true,
|
|
"Tooltip": true,
|
|
"GridProjection": false,
|
|
"HideWhenFaceDown": false,
|
|
"Hands": true,
|
|
"CardID": 278215,
|
|
"SidewaysCard": false,
|
|
"CustomDeck": {
|
|
"2782": {
|
|
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/",
|
|
"BackURL": "http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/",
|
|
"NumWidth": 10,
|
|
"NumHeight": 4,
|
|
"BackIsHidden": true,
|
|
"UniqueBack": true,
|
|
"Type": 0
|
|
}
|
|
},
|
|
"LuaScript": "",
|
|
"LuaScriptState": "",
|
|
"XmlUI": ""
|
|
}
|
|
],
|
|
"AttachedDecals": [
|
|
{
|
|
"Transform": {
|
|
"posX": -0.0021877822,
|
|
"posY": -0.08963572,
|
|
"posZ": -0.00288731651,
|
|
"rotX": 270.0,
|
|
"rotY": 359.869568,
|
|
"rotZ": 0.0,
|
|
"scaleX": 2.00000215,
|
|
"scaleY": 2.00000238,
|
|
"scaleZ": 2.00000262
|
|
},
|
|
"CustomDecal": {
|
|
"Name": "dunwich_back",
|
|
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
|
|
"Size": 7.4
|
|
}
|
|
}
|
|
]
|
|
} |